Skip to content

Commit

Permalink
Add CI job that verifies tests pass when using pnpm (vs. npm).
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidAnson committed Dec 31, 2024
1 parent 0439c8a commit 08bb527
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,23 @@ jobs:
- name: Run All Validations
run: npm run ci

run-tests-pnpm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use pnpm latest
uses: pnpm/action-setup@v4
with:
version: latest
- name: Use Node.js latest
uses: actions/setup-node@v4
with:
node-version: latest
- name: Install dependencies
run: pnpm install
- name: Run CI Tests
run: npm test

run-tests-webworker:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 08bb527

Please sign in to comment.