Skip to content

Commit 7d06ec3

Browse files
chore: fix e2e server command
1 parent c93328d commit 7d06ec3

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/test-jobs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v6
2222
- uses: voidzero-dev/setup-vp@v1
23-
- uses: actions/cache@v4
23+
- uses: actions/cache@v5
2424
id: playwright-cache
2525
with:
2626
path: ~/.cache/ms-playwright
2727
key: ${{ runner.os }}-playwright
2828
- run: vp exec playwright install chromium
2929
- run: vp run build
3030
- run: vp run test:e2e
31-
- uses: actions/upload-artifact@v4
31+
- uses: actions/upload-artifact@v7
3232
if: always()
3333
with:
3434
name: playwright-report

tests/e2e/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ export default defineConfig({
99
testMatch: 'tests/e2e/**/*.spec.ts',
1010
updateSnapshots: 'missing',
1111
use: { baseURL: 'http://localhost:5173/', headless: true },
12-
webServer: { command: 'vite playground', cwd: '../..', port: 5173, reuseExistingServer: true },
12+
webServer: { command: 'vp dev playground', cwd: '../..', port: 5173, reuseExistingServer: true },
1313
})

0 commit comments

Comments
 (0)