Merge remote-tracking branch 'upstream/main'

# Conflicts:
#	.github/workflows/check-dist.yml
#	.github/workflows/ci.yml
#	.github/workflows/manual-run.yml
#	.github/workflows/test-report.yml
#	README.md
This commit is contained in:
Martin Fillafer 2023-11-11 10:54:39 +01:00
commit a1e119011a
19 changed files with 2903 additions and 6630 deletions

View file

@ -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
@ -38,7 +38,7 @@ inputs:
Limits which test suites are listed. Supported options:
- all
- only-failed
required: true
required: false
default: 'all'
list-tests:
description: |
@ -46,16 +46,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:
@ -91,6 +95,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: 'node16'
main: 'dist/index.js'