From 81a5b4f61d4bb4e5794133f5c06db46e61b5beec Mon Sep 17 00:00:00 2001 From: Francesco Novy Date: Tue, 6 Feb 2024 17:29:54 +0100 Subject: [PATCH] build(test): Skip codecov upload for bun & deno (#10523) We don't generate coverage report for these, so we should not try to upload them to codecov, as the action warns about this. --- .github/workflows/build.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b30882983ddb..2d3c2706872f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -477,10 +477,6 @@ jobs: - name: Run tests run: | yarn test-ci-bun - - name: Compute test coverage - uses: codecov/codecov-action@v4 - with: - token: ${{ secrets.CODECOV_TOKEN }} job_deno_unit_tests: name: Deno Unit Tests @@ -512,10 +508,6 @@ jobs: cd packages/deno yarn build yarn test - - name: Compute test coverage - uses: codecov/codecov-action@v4 - with: - token: ${{ secrets.CODECOV_TOKEN }} job_node_unit_tests: name: Node (${{ matrix.node }}) Unit Tests