mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-16 06:17:10 +01:00
Update README - skip report when job is cancelled
This commit is contained in:
parent
effa386fea
commit
7a92afc6e2
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ jobs:
|
||||||
|
|
||||||
- name: 'Test Report'
|
- name: 'Test Report'
|
||||||
uses: dorny/test-reporter@v1
|
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:
|
with:
|
||||||
name: 'JEST Tests' # Name of the check run which will be created
|
name: 'JEST Tests' # Name of the check run which will be created
|
||||||
path: 'reports/jest-*.xml' # Path to test report
|
path: 'reports/jest-*.xml' # Path to test report
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue