1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-05 17:53:12 +02:00
unleash.unleash/.github/workflows/pr_add_test_results.yaml

17 lines
432 B
YAML

name: 'Attach Test report'
on:
workflow_run:
workflows: [TestReport]
types:
- completed
jobs:
report:
runs-on: ubuntu-latest
steps:
- uses: dorny/test-reporter@v2
with:
artifact: test-results # artifact name
name: Unit Tests # Name of the check run which will be created
path: '*.xml' # Path to test results (inside artifact .zip)
reporter: jest-junit