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 b6bacdd commit adc41b0Copy full SHA for adc41b0
.github/workflows/main.yml
@@ -0,0 +1,25 @@
1
+name: Playwright Tests
2
+on:
3
+ push:
4
+ branches: [ main, master ]
5
+ pull_request:
6
7
+jobs:
8
+ test:
9
+ timeout-minutes: 60
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - uses: actions/setup-node@v4
14
+ with:
15
+ node-version: lts/*
16
+ - name: Install dependencies
17
+ run: npm ci
18
+ - name: Run Playwright tests
19
+ run: npx playwright test
20
+ - uses: actions/upload-artifact@v4
21
+ if: ${{ !cancelled() }}
22
23
+ name: playwright-report
24
+ path: playwright-report/
25
+ retention-days: 30
0 commit comments