We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36ab386 commit 3987b24Copy full SHA for 3987b24
.github/workflows/test.yaml
@@ -40,13 +40,13 @@ jobs:
40
- name: Install Playwright
41
run: pnpm exec playwright install --with-deps
42
43
+ - name: Run Tests
44
+ run: pnpm run test
45
+
46
- name: Upload Playwright Report
47
uses: actions/upload-artifact@v4
48
if: ${{ !cancelled() }}
49
with:
50
name: playwright-report
51
path: playwright-report/
52
retention-days: 30
-
- - name: Run Tests
- run: pnpm run test
playwright.config.ts
@@ -2,7 +2,7 @@ import type { PlaywrightTestConfig } from '@playwright/test';
2
3
const config: PlaywrightTestConfig = {
4
webServer: {
5
- command: 'npm run build && npm run preview',
+ command: 'pnpm run build && pnpm run preview',
6
port: 4173,
7
},
8
testDir: 'tests',
0 commit comments