Skip to content

Commit

Permalink
ci: enable coverage reports
Browse files Browse the repository at this point in the history
  • Loading branch information
norskeld committed Mar 20, 2024
1 parent 1b1e461 commit 2a0fad9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ jobs:
cache: 'npm'
- name: Install Deps
run: npm ci
- name: Build & Test
- name: Build, Test & Coverage
run: |
npm run build
npm run test
npm run test:coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 2a0fad9

Please sign in to comment.