[bug] Change error message; for bug 62643 #370
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: Service unit tests | |
on: | |
push: | |
branches: | |
- '**' | |
paths: | |
- '**.js' | |
- '!tests/integration/**' | |
- '!DocService/sources/databaseConnectors/**' | |
jobs: | |
unit-tests: | |
name: Service unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Caching dependencies | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
cache: 'npm' | |
cache-dependency-path: | | |
./npm-shrinkwrap.json | |
./Common/npm-shrinkwrap.json | |
./DocService/npm-shrinkwrap.json | |
- name: Install modules | |
run: | | |
npm ci | |
npm --prefix Common ci | |
npm --prefix DocService ci | |
- name: Run Jest | |
run: npm run "unit tests" |