Skip to content

Commit

Permalink
chore: add codecov token to avoid failure (#825)
Browse files Browse the repository at this point in the history
* chore: add codecov token to avoid failure
- codecov seems to fail more and more when we're not providing a token

* chore: use correct jest coverage directory for codecov
  • Loading branch information
ghiscoding authored Nov 29, 2022
1 parent 5b29ed3 commit 76817e3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,8 @@ jobs:

- name: Upload Jest coverage to Codecov
if: "!contains(github.event.head_commit.message, 'chore(release)')"
run: bash <(curl -s https://codecov.io/bash)
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: test/jest-coverage
verbose: true

0 comments on commit 76817e3

Please sign in to comment.