Skip to content

Commit

Permalink
Update README - skip report when job is cancelled
Browse files Browse the repository at this point in the history
  • Loading branch information
Michal Dorner committed Feb 1, 2021
1 parent effa386 commit 7a92afc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

- name: 'Test Report'
uses: dorny/test-reporter@v1
if: always() # run this step even if previous step failed
if: success() || failure() # run this step even if previous step failed, but skip it when job is cancelled
with:
name: 'JEST Tests' # Name of the check run which will be created
path: 'reports/jest-*.xml' # Path to test report
Expand Down

0 comments on commit 7a92afc

Please sign in to comment.