Skip to content

Commit 08bb527

Browse files
committed
Add CI job that verifies tests pass when using pnpm (vs. npm).
1 parent 0439c8a commit 08bb527

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/ci.yml

+17
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,23 @@ jobs:
3030
- name: Run All Validations
3131
run: npm run ci
3232

33+
run-tests-pnpm:
34+
runs-on: ubuntu-latest
35+
steps:
36+
- uses: actions/checkout@v4
37+
- name: Use pnpm latest
38+
uses: pnpm/action-setup@v4
39+
with:
40+
version: latest
41+
- name: Use Node.js latest
42+
uses: actions/setup-node@v4
43+
with:
44+
node-version: latest
45+
- name: Install dependencies
46+
run: pnpm install
47+
- name: Run CI Tests
48+
run: npm test
49+
3350
run-tests-webworker:
3451
runs-on: ubuntu-latest
3552
steps:

0 commit comments

Comments
 (0)