From c23d3d04200221bfff12e8e8cf47845cac405335 Mon Sep 17 00:00:00 2001 From: Jonas Date: Thu, 28 May 2026 11:04:31 +0200 Subject: [PATCH] test(playwright): add summary job so we can add it to merge rules Signed-off-by: Jonas --- .github/workflows/playwright.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index db27267153c..c1c02fcdc5e 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -11,7 +11,7 @@ permissions: contents: read jobs: - test: + playwright: timeout-minutes: 60 runs-on: ubuntu-latest strategy: @@ -66,3 +66,12 @@ jobs: name: playwright-report_shard${{ matrix.shardIndex }} path: test-results/ retention-days: 7 + + summary: + runs-on: ubuntu-latest-low + needs: playwright + if: always() + name: playwright-summary + steps: + - name: Summary status + run: if ${{ needs.playwright.result != 'success' && needs.playwright.result != 'skipped' }}; then exit 1; fi