Skip to content

Commit 36ab386

Browse files
committedNov 12, 2024··
improve playwright test
1 parent 2f5bbcc commit 36ab386

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed
 

‎.github/workflows/test.yaml

+9-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,15 @@ jobs:
3838
run: pnpm run build
3939

4040
- name: Install Playwright
41-
run: pnpm exec playwright install
41+
run: pnpm exec playwright install --with-deps
42+
43+
- name: Upload Playwright Report
44+
uses: actions/upload-artifact@v4
45+
if: ${{ !cancelled() }}
46+
with:
47+
name: playwright-report
48+
path: playwright-report/
49+
retention-days: 30
4250

4351
- name: Run Tests
4452
run: pnpm run test

0 commit comments

Comments
 (0)
Please sign in to comment.