Skip to content

Commit

Permalink
use easier to read condition
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhiPrasad committed Sep 10, 2024
1 parent 2a010d1 commit c7b39f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ jobs:
retention-days: 7

- name: Upload test results to Codecov
if: ${{ !cancelled() }}
if: cancelled() == 'false'
uses: codecov/test-results-action@v1
with:
directory: dev-packages/browser-integration-tests
Expand Down Expand Up @@ -671,7 +671,7 @@ jobs:
retention-days: 7

- name: Upload test results to Codecov
if: ${{ !cancelled() }}
if: cancelled() == 'false'
uses: codecov/test-results-action@v1
with:
directory: dev-packages/browser-integration-tests
Expand Down Expand Up @@ -1029,7 +1029,7 @@ jobs:
retention-days: 7

- name: Upload test results to Codecov
if: ${{ !cancelled() }}
if: cancelled() == 'false'
uses: codecov/test-results-action@v1
with:
directory: dev-packages/e2e-tests
Expand Down

0 comments on commit c7b39f2

Please sign in to comment.