We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 874cb20 commit 0ba94a0Copy full SHA for 0ba94a0
.github/workflows/build.yml
@@ -23,6 +23,8 @@ jobs:
23
node-version: "14"
24
- name: Install
25
run: npm i
26
+ - name: Install Playwright Browsers
27
+ run: npx playwright install --with-deps
28
- name: Test
29
run: make test
30
- name: Publish pacts
.github/workflows/playwright.yml
@@ -1,9 +1,8 @@
1
name: Playwright Tests
2
+
3
on:
- push:
4
- branches: [ main, master ]
5
- pull_request:
6
+ workflow_dispatch:
7
jobs:
8
test:
9
timeout-minutes: 60
0 commit comments