Upgrade Angular to v17 #1
Workflow file for this run
This file contains 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: Jasmine Tests | |
on: | |
push: | |
branches: ["develop"] | |
pull_request: | |
branches: ["master", "develop"] | |
types: [synchronize] | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./nav-app/ | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
cache-dependency-path: nav-app/package-lock.json | |
- name: Install Angular CLI | |
run: npm install -g @angular/cli | |
- name: Install | |
run: npm ci | |
- name: Run Jasmine tests | |
run: npm run test -- --code-coverage --no-watch --browsers ChromeHeadlessCI | |
- name: Archive code coverage results | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: code-coverage-report | |
path: nav-app/coverage/chrome/ |