From 489eb046620b2fc6b5f432a12a2743b764127226 Mon Sep 17 00:00:00 2001 From: swadeley Date: Mon, 16 Feb 2026 17:30:40 +0800 Subject: [PATCH] fix: CODECOV_TOKEN missing in CI checks --- .github/workflows/ci-checks.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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