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 403c96a commit 9bd55b3Copy full SHA for 9bd55b3
.github/workflows/check.yml
@@ -30,10 +30,13 @@ jobs:
30
# since the amount of time it takes to restore the cache is
31
# comparable to the time it takes to download the binaries"
32
- name: Install Playwright Browsers
33
- run: npx playwright install --with-deps
+ run: pnpx playwright install --with-deps
34
35
- name: Run Playwright tests
36
- run: npx playwright test
+ run: pnpm test:e2e
37
+
38
+ - name: Run unit tests
39
+ run: pnpm test:unit
40
41
- uses: actions/upload-artifact@v4
42
if: ${{ !cancelled() }}
0 commit comments