Skip to content

Commit 4285a7e

Browse files
authored
build(ci): Explicitly add codecov token (#10485)
This is necessary since v4 of the action.
1 parent 004efa6 commit 4285a7e

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -446,6 +446,8 @@ jobs:
446446
run: yarn test-ci-browser
447447
- name: Compute test coverage
448448
uses: codecov/codecov-action@v4
449+
with:
450+
token: ${{ secrets.CODECOV_TOKEN }}
449451

450452
job_bun_unit_tests:
451453
name: Bun Unit Tests
@@ -474,6 +476,8 @@ jobs:
474476
yarn test-ci-bun
475477
- name: Compute test coverage
476478
uses: codecov/codecov-action@v4
479+
with:
480+
token: ${{ secrets.CODECOV_TOKEN }}
477481

478482
job_deno_unit_tests:
479483
name: Deno Unit Tests
@@ -507,6 +511,8 @@ jobs:
507511
yarn test
508512
- name: Compute test coverage
509513
uses: codecov/codecov-action@v4
514+
with:
515+
token: ${{ secrets.CODECOV_TOKEN }}
510516

511517
job_node_unit_tests:
512518
name: Node (${{ matrix.node }}) Unit Tests
@@ -539,6 +545,8 @@ jobs:
539545
yarn test-ci-node
540546
- name: Compute test coverage
541547
uses: codecov/codecov-action@v4
548+
with:
549+
token: ${{ secrets.CODECOV_TOKEN }}
542550

543551
job_profiling_node_unit_tests:
544552
name: Node Profiling Unit Tests

0 commit comments

Comments
 (0)