add new workflow for only failed tests

This commit is contained in:
Connor 2024-10-15 13:16:04 -05:00
parent 39c3c54f81
commit d24bdba301
No known key found for this signature in database
GPG key ID: 455C6C81CB2BD091

View file

@ -0,0 +1,26 @@
name: Playwright Test Report
on:
workflow_run:
workflows: ['CI']
types:
- completed
push:
jobs:
report:
name: Workflow test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Check dirs
run: ls
- name: Test reporter
uses: ./
with:
name: Workflow Report
path: playwright-report.xml
reporter: java-junit
show-html-notice: true
list-tests: 'failed'
fail-on-error: false