Remove the newly added loading signal
#189
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Client | |
| on: [push] | |
| defaults: | |
| run: | |
| working-directory: ./client | |
| jobs: | |
| ng-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Use Node.js 22 | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| cache: 'npm' | |
| cache-dependency-path: ./client/package-lock.json | |
| - name: Install dependencies (npm ci) | |
| run: npm ci | |
| env: | |
| CYPRESS_INSTALL_BINARY: 0 | |
| - name: Test (npm run test) | |
| run: npm run test -- --no-watch --no-progress --browsers=ChromeHeadlessCI | |
| ng-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Use Node.js 22 | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| cache: 'npm' | |
| cache-dependency-path: ./client/package-lock.json | |
| - name: Install dependencies (npm ci) | |
| run: npm ci | |
| env: | |
| CYPRESS_INSTALL_BINARY: 0 | |
| - name: Lint (npm run lint) | |
| run: npm run lint |