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 2c6d0d7 commit 812b8b4Copy full SHA for 812b8b4
.github/workflows/check.yml
@@ -23,5 +23,18 @@ jobs:
23
- name: Run Prettier Check
24
run: pnpm format:check
25
26
- - name: Run Playwright
27
- run: pnpm test
+ # per the docs: "caching browser binaries is not recommended,
+ # since the amount of time it takes to restore the cache is
28
+ # comparable to the time it takes to download the binaries"
29
+ - name: Install Playwright Browsers
30
+ run: npx playwright install --with-deps
31
+
32
+ - name: Run Playwright tests
33
+ run: npx playwright test
34
35
+ - uses: actions/upload-artifact@v4
36
+ if: ${{ !cancelled() }}
37
+ with:
38
+ name: playwright-report
39
+ path: playwright-report/
40
+ retention-days: 30
0 commit comments