diff --git a/.github/workflows/ci-checks.yml b/.github/workflows/ci-checks.yml index 11b668a3f..94fb144fb 100644 --- a/.github/workflows/ci-checks.yml +++ b/.github/workflows/ci-checks.yml @@ -25,9 +25,11 @@ jobs: run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose - run: npm run ci:verify - name: Upload code coverage - uses: codecov/codecov-action@v5.3.1 + uses: codecov/codecov-action@v5 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: + token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true files: ./coverage/coverage-final.json,./coverage-jest/coverage-final.json - token: ${{ secrets.CODECOV_TOKEN }} - run: npm run build