Skip to content

Commit

Permalink
meta(ci): Don't fail CI run when codecov fails to upload (#13930)
Browse files Browse the repository at this point in the history
Ref: codecov/test-results-action#91

The job randomly fails and causes CI failure.
  • Loading branch information
lforst authored Oct 10, 2024
1 parent 0b00605 commit fcc3d2b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit fcc3d2b

Please sign in to comment.