We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a764e48 commit 9be5586Copy full SHA for 9be5586
.github/workflows/deploy.yml
@@ -38,10 +38,10 @@ jobs:
38
run: pnpm install
39
40
- name: Install Playwright (for MermaidJS)
41
- run: npx playwright install --with-deps chromium
+ run: pnpm exec playwright install --with-deps chromium
42
43
- name: Build Website
44
- run: npm run build
+ run: pnpm build
45
46
- name: Upload Built Website
47
uses: actions/upload-pages-artifact@v3
@@ -84,10 +84,10 @@ jobs:
84
85
86
- name: Install Playwright Browsers
87
- run: npx playwright install --with-deps chromium firefox
+ run: pnpm exec playwright install --with-deps chromium firefox
88
89
- name: Run Playwright tests
90
- run: npx playwright test
+ run: pnpm test:e2e
91
92
- name: Upload Test Results
93
uses: actions/upload-artifact@v4
0 commit comments