Skip to content

Commit

Permalink
ci: use npm test script for CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jdbruijn committed Apr 17, 2022
1 parent 82047c3 commit acbb2c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Install project
run: npm ci --ignore-scripts
- name: Test
run: npm run test:ci
run: npm test
code-coverage:
needs: [lint, build, test]
runs-on: ubuntu-latest
Expand All @@ -73,7 +73,7 @@ jobs:
- name: Install project
run: npm ci --ignore-scripts
- name: Test
run: npm run test:ci
run: npm test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@e3c560433a6cc60aec8812599b7844a7b4fa0d71 # tag=v3.0.0
with:
Expand Down

0 comments on commit acbb2c9

Please sign in to comment.