mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-16 06:17:10 +01:00
Add counters outputs to action.yml
This commit is contained in:
parent
2077cfca36
commit
00c66cb7f0
2 changed files with 15 additions and 7 deletions
|
|
@ -102,7 +102,7 @@ jobs:
|
||||||
| passed | Count of passed tests |
|
| passed | Count of passed tests |
|
||||||
| failed | Count of failed tests |
|
| failed | Count of failed tests |
|
||||||
| skipped | Count of skipped tests |
|
| skipped | Count of skipped tests |
|
||||||
| time | Execution time [ms] |
|
| time | Test execution time [ms] |
|
||||||
|
|
||||||
## Supported formats
|
## Supported formats
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -59,6 +59,14 @@ outputs:
|
||||||
Final conclusion of the created check run:
|
Final conclusion of the created check run:
|
||||||
- 'success' if no failed tests was found
|
- 'success' if no failed tests was found
|
||||||
- 'failure' if any failed test was found
|
- 'failure' if any failed test was found
|
||||||
|
passed:
|
||||||
|
description: Count of passed tests
|
||||||
|
failed:
|
||||||
|
description: Count of failed tests
|
||||||
|
skipped:
|
||||||
|
description: Count of skipped tests
|
||||||
|
time:
|
||||||
|
description: Test execution time [ms]
|
||||||
runs:
|
runs:
|
||||||
using: 'node12'
|
using: 'node12'
|
||||||
main: 'dist/index.js'
|
main: 'dist/index.js'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue