test-reporter/.github/workflows/test-report.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 21: cannot unmarshal !!map into string
2023-03-20 15:49:56 +01:00

21 lines
410 B
YAML

name: Test Report
on:
workflow_run:
workflows: ['CI']
types:
- completed
jobs:
report:
name: Workflow test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./
with:
artifact: test-results
name: Workflow Report
path: '*.xml'
reporter: jest-junit
directory-mapping: {from: "some/path", to: "some/other/path"}