Skip to content

Commit

Permalink
Automation: Use token for Codecov (#3209)
Browse files Browse the repository at this point in the history
  • Loading branch information
flodolo committed May 10, 2024
1 parent 1ee7ee1 commit d8d273a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,7 @@ jobs:

- run: pytest
- uses: codecov/codecov-action@v4
with: { flags: backend }
with:
flags: backend
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
5 changes: 4 additions & 1 deletion .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,7 @@ jobs:
run: npm test --coverage
working-directory: translate
- uses: codecov/codecov-action@v4
with: { flags: frontend }
with:
flags: frontend
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
5 changes: 4 additions & 1 deletion .github/workflows/tag-admin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
run: npm test
working-directory: tag-admin
- uses: codecov/codecov-action@v4
with: { flags: non-frontend-js }
with:
flags: non-frontend-js
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Build
run: npm run build

0 comments on commit d8d273a

Please sign in to comment.