Skip to content

Commit

Permalink
chore: refact
Browse files Browse the repository at this point in the history
  • Loading branch information
npmstudy committed Dec 13, 2023
1 parent c6b0d62 commit 5681f29
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,27 @@ jobs:

- name: Build
run: npm run build
- name: Upload coverage reports to Codecov

- name: Upload @tomrpc/core coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
file: ./packages/core/coverage/coverage-final.json
flags: tomrpc/core

- name: Upload @tomrpc/client coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
file: ./packages/client/coverage/coverage-final.json
flags: tomrpc/client

- name: Upload @tomrpc/app coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
file: ./coverage/lcov.info
file: ./packages/app/coverage/coverage-final.json
flags: tomrpc/app

0 comments on commit 5681f29

Please sign in to comment.