From d24bdba301b04e85ab41264f072ebc354bb9dd0f Mon Sep 17 00:00:00 2001 From: Connor Date: Tue, 15 Oct 2024 13:16:04 -0500 Subject: [PATCH] add new workflow for only failed tests --- .github/workflows/playwright-only-failed.yml | 26 ++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/playwright-only-failed.yml 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