From fcc3d2b2d2097b9d98c99be4a0e4cd5d029540a9 Mon Sep 17 00:00:00 2001 From: Luca Forstner Date: Thu, 10 Oct 2024 10:45:26 +0200 Subject: [PATCH] meta(ci): Don't fail CI run when codecov fails to upload (#13930) Ref: https://github.com/codecov/test-results-action/issues/91 The job randomly fails and causes CI failure. --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5ed034e8cdc2..59ab696758c2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -611,6 +611,7 @@ jobs: - name: Upload test results to Codecov if: cancelled() == false + continue-on-error: true uses: codecov/test-results-action@v1 with: directory: dev-packages/browser-integration-tests @@ -671,6 +672,7 @@ jobs: - name: Upload test results to Codecov if: cancelled() == false + continue-on-error: true uses: codecov/test-results-action@v1 with: directory: dev-packages/browser-integration-tests @@ -1034,6 +1036,7 @@ jobs: - name: Upload test results to Codecov if: cancelled() == false + continue-on-error: true uses: codecov/test-results-action@v1 with: directory: dev-packages/e2e-tests