Skip to content

Commit 9bd55b3

Browse files
committed
Start running unit tests on CI
1 parent 403c96a commit 9bd55b3

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/check.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,13 @@ jobs:
3030
# since the amount of time it takes to restore the cache is
3131
# comparable to the time it takes to download the binaries"
3232
- name: Install Playwright Browsers
33-
run: npx playwright install --with-deps
33+
run: pnpx playwright install --with-deps
3434

3535
- name: Run Playwright tests
36-
run: npx playwright test
36+
run: pnpm test:e2e
37+
38+
- name: Run unit tests
39+
run: pnpm test:unit
3740

3841
- uses: actions/upload-artifact@v4
3942
if: ${{ !cancelled() }}

0 commit comments

Comments
 (0)