Skip to content

Commit

Permalink
fix: coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
oneWalker committed Nov 6, 2024
1 parent f35a591 commit c92f3be
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/autoUnitTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,15 @@ jobs:
run: npm i

- name: Run Unit Tests
run: npm run ci && npm i --save-dev jest-junit JEST_JUNIT_CLASSNAME="{filepath}" jest --reporters=jest-junit
run: npm run ci

- name: Generate Coverage Report
run: npm run coverage

- name: Code Coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.PRIVATE_CODECOV_TOKEN }}
files: ./coverage/*.json
flags: unittests
name: code-coverage-report

0 comments on commit c92f3be

Please sign in to comment.