ALCS-000: Bump @angular/build from 20.3.15 to 20.3.16 in /alcs-frontend in the npm-minor-and-patch group #5824
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: CI | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| jobs: | |
| test-alcs-frontend: | |
| defaults: | |
| run: | |
| working-directory: alcs-frontend | |
| strategy: | |
| matrix: | |
| platform: [ubuntu-latest] | |
| node: ["24"] | |
| name: ALCS Frontend Tests - ${{ matrix.node }}/${{ matrix.platform }} | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-node@master | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - run: npm ci | |
| - run: npm run build | |
| - run: npm run test:ci | |
| test-portal-frontend: | |
| defaults: | |
| run: | |
| working-directory: portal-frontend | |
| strategy: | |
| matrix: | |
| platform: [ubuntu-latest] | |
| node: ["24"] | |
| name: Portal Frontend Tests - ${{ matrix.node }}/${{ matrix.platform }} | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-node@master | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - run: npm ci | |
| - run: npm run build | |
| - run: npm run test:ci | |
| test-api: | |
| defaults: | |
| run: | |
| working-directory: services | |
| strategy: | |
| matrix: | |
| platform: [ubuntu-latest] | |
| node: ["24"] | |
| name: API Tests - ${{ matrix.node }}/${{ matrix.platform }} | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-node@master | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - run: npm ci | |
| - run: npm run build | |
| - run: npm run test |