Navigator Unit Testing #29
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 Testing | |
on: | |
push: | |
branches: [ "develop" ] | |
pull_request: | |
branches: [ "master", "develop" ] | |
jobs: | |
run-jasmine-tests: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./nav-app/ | |
strategy: | |
matrix: | |
node-version: [16.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 | |
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/index.html |