mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-17 06:47:09 +01:00
25 lines
515 B
YAML
25 lines
515 B
YAML
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-suites: 'non-skipped'
|