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 54b099c commit 29d6e66Copy full SHA for 29d6e66
.github/workflows/playwright.yml
@@ -8,17 +8,19 @@ jobs:
8
test:
9
timeout-minutes: 60
10
runs-on: ubuntu-latest
11
+ container:
12
+ image: mcr.microsoft.com/playwright:v1.41.2
13
steps:
- - uses: actions/checkout@v3
14
+ - uses: actions/checkout@v4
15
- uses: actions/setup-node@v3
16
with:
- node-version: 16
17
+ node-version: 20
18
- run: npm install -g pnpm@8.8.0
19
- run: pnpm install
20
- run: pnpm build
- - run: npx playwright install --with-deps
21
+ - run: npx playwright install
22
- run: pnpm test || exit 1
- - uses: actions/upload-artifact@v3
23
+ - uses: actions/upload-artifact@v4
24
if: always()
25
26
name: playwright-report
0 commit comments