Skip to content

Commit ac1a605

Browse files
update ci to call pnpm instead of npm
1 parent 3538e76 commit ac1a605

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/node.js.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ jobs:
2121
uses: actions/setup-node@v1
2222
with:
2323
node-version: ${{ matrix.node-version }}
24-
- run: npm ci
25-
- run: npm run build --if-present
26-
- run: npm run lint
27-
- run: npm test
24+
- uses: pnpm/action-setup@v4
25+
with:
26+
version: 9
27+
- run: pnpm install
28+
- run: pnpm run build
29+
- run: pnpm run lint
30+
- run: pnpm run test

0 commit comments

Comments
 (0)