Skip to content

Commit

Permalink
Use PNPM
Browse files Browse the repository at this point in the history
  • Loading branch information
peterjenkins1 committed Oct 9, 2024
1 parent c058669 commit 9dbf530
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 20.x
- run: npm install
- run: npm run build
- uses: pnpm/action-setup@v2
with:
version: '9.5.0'
- run: pnpm install
- run: pnpm run build

test:
runs-on: ubuntu-latest
Expand All @@ -32,5 +35,8 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
- uses: pnpm/action-setup@v2
with:
version: '9.5.0'
- run: pnpm install
- run: pnpm test

0 comments on commit 9dbf530

Please sign in to comment.