Skip to content

Commit

Permalink
fix: added codecov api token
Browse files Browse the repository at this point in the history
  • Loading branch information
Aegean09 committed May 3, 2024
1 parent b79a7a6 commit 480979e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/betapublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,15 @@ jobs:
run: npm install
- name: Test
run: npm run test
- uses: codecov/codecov-action@v2
- uses: codecov/codecov-action@v4
env:
CODE_COV_API_TOKEN: ${{ secrets.CODE_COV_API_TOKEN }}
with:
files: coverage/*.json
flags: unittests
name: react-carousel-codecov
fail_ci_if_error: true
verbose: true
token: ${{ secrets.CODE_COV_API_TOKEN }}
- name: Build
run: npm run build
- name: Publish
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/prchecks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,15 @@ jobs:
run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose
- name: Test
run: npm run test
- uses: codecov/codecov-action@v2
- uses: codecov/codecov-action@v4
env:
CODE_COV_API_TOKEN: ${{ secrets.CODE_COV_API_TOKEN }}
with:
files: coverage/*.json
flags: unittests
name: react-carousel-codecov
fail_ci_if_error: true
verbose: true
token: ${{ secrets.CODE_COV_API_TOKEN }}
lint:
runs-on: ubuntu-latest
permissions:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,15 @@ jobs:
run: npm install
- name: Test
run: npm run test
- uses: codecov/codecov-action@v2
- uses: codecov/codecov-action@v4
env:
CODE_COV_API_TOKEN: ${{ secrets.CODE_COV_API_TOKEN }}
with:
files: coverage/*.json
flags: unittests
name: react-carousel-codecov
fail_ci_if_error: true
verbose: true
token: ${{ secrets.CODE_COV_API_TOKEN }}
- name: Build
run: npm run build
- name: Publish
Expand Down

0 comments on commit 480979e

Please sign in to comment.