Skip to content

Commit

Permalink
ci: Fix code coverage reporting (#352)
Browse files Browse the repository at this point in the history
  • Loading branch information
cbaker6 authored Jan 1, 2025
1 parent de76fa6 commit 9a43ec0
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,11 @@ jobs:
run: npm ci
- name: Run tests
run: npm run test
- name: Code coverage
run: bash <(curl -s https://codecov.io/bash)
- name: Upload code coverage
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

0 comments on commit 9a43ec0

Please sign in to comment.