![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [dorny/test-reporter](https://github.com/dorny/test-reporter) from 1.7.0 to 1.8.0.
- [Release notes](https://github.com/dorny/test-reporter/releases)
- [Changelog](https://github.com/dorny/test-reporter/blob/main/CHANGELOG.md)
- [Commits](afe6793191...eaa763f6ff
)
---
updated-dependencies:
- dependency-name: dorny/test-reporter
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
18 lines
618 B
YAML
18 lines
618 B
YAML
name: 'E2E Test Report'
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: ['CI'] # runs after CI workflow
|
|
types:
|
|
- completed
|
|
jobs:
|
|
report:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: dorny/test-reporter@eaa763f6ffc21c7a37837f56cd5f9737f27fc6c8 # v1.8.0
|
|
with:
|
|
artifact: /e2e-test-reports-(.*)/
|
|
name: JEST Tests $1 # Name of the check run which will be created
|
|
path: 'report*.xml' # Path to test results (inside artifact .zip)
|
|
reporter: jest-junit # Format of test results
|
|
fail-on-empty: 'true'
|