We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49f54a5 commit 8e4e10eCopy full SHA for 8e4e10e
2 files changed
.github/workflows/docker-publish.yml
@@ -24,6 +24,8 @@ env:
24
IMAGE_NAME: ${{ github.repository }}
25
26
jobs:
27
+ # Keep e2e in this workflow so Docker image build/push is hard-gated by test success.
28
+ # Do not move automatic e2e back to playwright.yml, otherwise master pushes run duplicate e2e jobs.
29
e2e:
30
runs-on: ubuntu-latest
31
timeout-minutes: 45
.github/workflows/playwright.yml
@@ -1,9 +1,9 @@
1
name: Playwright E2E
2
3
+# Manual-only by design:
4
+# - Automatic e2e runs that gate Docker image builds live in docker-publish.yml.
5
+# - Keeping this workflow manual avoids running the same e2e suite twice on master pushes.
6
on:
- push:
- branches:
- - master
7
workflow_dispatch:
8
9
0 commit comments