From e5f4e4d580a579091b5e8d1ed9a2229109b56714 Mon Sep 17 00:00:00 2001 From: Luca Forstner Date: Thu, 10 Oct 2024 08:22:58 +0000 Subject: [PATCH] meta(ci): Don't fail CI run when codecov fails to upload Ref: https://github.com/codecov/test-results-action/issues/91 --- .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