mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-16 22:37:09 +01:00
add new workflow for only failed tests
This commit is contained in:
parent
39c3c54f81
commit
d24bdba301
1 changed files with 26 additions and 0 deletions
26
.github/workflows/playwright-only-failed.yml
vendored
Normal file
26
.github/workflows/playwright-only-failed.yml
vendored
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue