Skip to content

Commit

Permalink
ci: update testing-workflow.yaml with pnpm setup
Browse files Browse the repository at this point in the history
  • Loading branch information
patricks-js authored Nov 24, 2024
1 parent 2555599 commit 9639750
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/testing-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@ jobs:
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4.0.0
- name: Use Node.js v22
uses: actions/setup-node@v4
with:
node-version: '22.x'
- name: Install dependencies
run: npm install
run: pnpm install
- name: Test code
run: npm run test
run: pnpm run test

0 comments on commit 9639750

Please sign in to comment.