diff --git a/.github/workflows/playwright-only-failed.yml b/.github/workflows/playwright-only-failed.yml new file mode 100644 index 0000000..e7bace1 --- /dev/null +++ b/.github/workflows/playwright-only-failed.yml @@ -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