Skip to content

Commit

Permalink
chore: enable test coverage reporting in CI pipeline
Browse files Browse the repository at this point in the history
- Updated `.github/workflows/ci.yml` to include the `--coverage` flag when running tests.
- This ensures test coverage data is generated and can be uploaded to Codecov for better analysis.
  • Loading branch information
cswni committed Feb 7, 2025
1 parent 6ab9d6a commit bb39510
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: npm run lint

- name: Test
run: npm run test
run: npm run test -- --coverage

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
Expand Down

0 comments on commit bb39510

Please sign in to comment.