Merge pull request #1543 from tmedwards/develop #273
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: Jest Tests | |
on: | |
push: | |
branches: [develop] | |
pull_request: | |
branches: [develop, main] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
cache: npm | |
node-version: 18 | |
- name: Install | |
run: npm ci | |
- name: Test | |
run: npm run test:coverage -- --maxWorkers=2 |