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 a069928 commit ec1ccddCopy full SHA for ec1ccdd
.github/workflows/playwright.yml
@@ -1,11 +1,5 @@
1
name: Playwright Tests
2
3
-# Disabled until playwright config is fixed
4
-# on:
5
-# push:
6
-# branches: [ main, master ]
7
-# pull_request:
8
9
on:
10
push:
11
branches: [ main, master ]
@@ -15,6 +9,8 @@ jobs:
15
test:
16
timeout-minutes: 60
17
runs-on: ubuntu-latest
12
+ env:
13
+ CI: true
18
14
steps:
19
- uses: actions/checkout@v4
20
- uses: actions/setup-node@v4
@@ -25,7 +21,7 @@ jobs:
25
21
- name: Install Playwright Browsers
26
22
run: npx playwright install --with-deps
27
23
- name: Run Playwright tests
28
- run: npx playwright test
24
+ run: npm run playwright:test:ci
29
- uses: actions/upload-artifact@v4
30
if: ${{ !cancelled() }}
31
with:
0 commit comments