ingress-nginx-helm/.github/workflows/junit-reports.yaml
Ricardo Katz c9a3571556
Reuse workflow CI (#10826)
* Reuse workflow CI

* Simplify images Makefiles
2024-01-13 14:15:35 +01:00

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@afe6793191b75b608954023a46831a3fe10048d4 # v1.7.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'