We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edd5d0e commit 4a07747Copy full SHA for 4a07747
1 file changed
.github/workflows/playwright.yml
@@ -1,17 +1,28 @@
1
name: Playwright
2
3
on:
4
- push:
+ pull_request:
5
branches:
6
- main
7
- paths:
+ types:
8
+ - opened
9
+ - synchronize
10
+ paths: &playwright_paths
11
- 'src/**'
12
- 'playwright/**'
13
- 'package-lock.json'
14
- 'playwright.config.ts'
15
- '.github/workflows/playwright.yml'
16
+ push:
17
+ branches:
18
+ - main
19
+ paths: *playwright_paths
20
workflow_dispatch:
21
22
+concurrency:
23
+ group: playwright-${{ github.workflow }}-${{ github.ref }}
24
+ cancel-in-progress: true
25
+
26
jobs:
27
e2e:
28
name: ${{ matrix.jobName }}
0 commit comments