Skip to content

Commit 0b54fe9

Browse files
committed
ci: 👷 update Github Action for pnpm
1 parent 8e6327b commit 0b54fe9

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/node.js.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,16 @@ jobs:
2020

2121
steps:
2222
- uses: actions/checkout@v4
23+
24+
- name: Install pnpm
25+
uses: pnpm/action-setup@v4
26+
with:
27+
version: 9
28+
2329
- name: Use Node.js ${{ matrix.node-version }}
2430
uses: actions/setup-node@v4
2531
with:
2632
node-version: ${{ matrix.node-version }}
27-
cache: "npm"
28-
- run: npm install-ci-test
33+
cache: 'pnpm'
34+
- name: Install dependencies
35+
run: pnpm install

0 commit comments

Comments
 (0)