mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-15 13:57:09 +01:00
Merge branch 'dorny:main'
This commit is contained in:
commit
0b7d35fd12
46 changed files with 35637 additions and 15914 deletions
17
action.yml
17
action.yml
|
|
@ -11,7 +11,7 @@ inputs:
|
|||
required: true
|
||||
path:
|
||||
description: |
|
||||
Coma separated list of paths to test results
|
||||
Comma-separated list of paths to test results
|
||||
Supports wildcards via [fast-glob](https://github.com/mrmlnc/fast-glob)
|
||||
All matched result files must be of same format
|
||||
required: true
|
||||
|
|
@ -31,6 +31,7 @@ inputs:
|
|||
- java-junit
|
||||
- jest-junit
|
||||
- mocha-json
|
||||
- swift-xunit
|
||||
required: true
|
||||
list-suites:
|
||||
description: |
|
||||
|
|
@ -38,7 +39,7 @@ inputs:
|
|||
- all
|
||||
- only-failed
|
||||
- none
|
||||
required: true
|
||||
required: false
|
||||
default: 'all'
|
||||
list-tests:
|
||||
description: |
|
||||
|
|
@ -46,16 +47,20 @@ inputs:
|
|||
- all
|
||||
- only-failed
|
||||
- none
|
||||
required: true
|
||||
required: false
|
||||
default: 'all'
|
||||
max-annotations:
|
||||
description: |
|
||||
Limits number of created annotations with error message and stack trace captured during test execution.
|
||||
Must be less or equal to 50.
|
||||
required: true
|
||||
required: false
|
||||
default: '10'
|
||||
fail-on-error:
|
||||
description: Set this action as failed if test report contain any failed test
|
||||
required: false
|
||||
default: 'true'
|
||||
fail-on-empty:
|
||||
description: Set this action as failed if no test results were found
|
||||
required: true
|
||||
default: 'true'
|
||||
working-directory:
|
||||
|
|
@ -96,6 +101,10 @@ outputs:
|
|||
description: Count of skipped tests
|
||||
time:
|
||||
description: Test execution time [ms]
|
||||
url:
|
||||
description: Check run URL
|
||||
url_html:
|
||||
description: Check run URL HTML
|
||||
runs:
|
||||
using: 'node20'
|
||||
main: 'dist/index.js'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue