Skip to content

Commit

Permalink
feat(ci): streamline CI workflow steps for testing
Browse files Browse the repository at this point in the history
- Removed redundant "Coverage" step from `.github/workflows/ci.yml`.
- Ensured `test:coverage` is run only once during the CI process.
- Improved clarity and reduced duplication in the workflow configuration.
  • Loading branch information
cswni committed Feb 7, 2025
1 parent 10f5889 commit 3d30a07
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,8 @@ jobs:

- name: Test
run: npm run test

- name: Generate coverage report
run: npm run test:coverage

- name: Coverage
- name: Generate coverage report
run: npm run test:coverage

- name: Upload coverage reports to Codecov
Expand Down

0 comments on commit 3d30a07

Please sign in to comment.