Skip to content

Commit

Permalink
ci: add codecov job
Browse files Browse the repository at this point in the history
  • Loading branch information
iiroj authored and okonet committed Apr 4, 2020
1 parent 1a384f0 commit 329be82
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,18 @@ jobs:
- run: git --version
- run: yarn
- run: yarn test
- uses: actions/upload-artifact@v1
with:
name: coverage-${{ runner.os }}-${{ runner.node }}
path: coverage

codecov:
name: codecov.io
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/download-artifact@v1
with:
name: coverage-${{ runner.os }}-${{ runner.node }}
- uses: actions/checkout@v2
- uses: codecov/codecov-action@v1

0 comments on commit 329be82

Please sign in to comment.