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 586fa1b commit 4b75fc6Copy full SHA for 4b75fc6
.github/workflows/playwright.yml
@@ -30,7 +30,10 @@ jobs:
30
working-directory: packages/e2e-tests
31
steps:
32
- uses: actions/checkout@v4
33
- - uses: actions/setup-node@v4
+ - name: Install pnpm
34
+ uses: pnpm/action-setup@v4
35
+ - name: Install Node.js
36
+ uses: actions/setup-node@v4
37
with:
38
node-version: 20
39
cache: 'pnpm'
@@ -54,9 +57,9 @@ jobs:
54
57
55
58
node-version: lts/*
56
59
- name: Install Playwright Browsers
- run: pnpmx playwright install --with-deps
60
+ run: pnpx playwright install --with-deps
61
- name: Run Playwright Tests
- run: pnpmx playwright test
62
+ run: pnpx playwright test
63
- uses: actions/upload-artifact@v4
64
id: playwright-report-artifact
65
if: ${{ !cancelled() }}
0 commit comments