Skip to content

Commit 65d1d6e

Browse files
authored
Update ci.yml
1 parent 501c0ca commit 65d1d6e

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,13 @@ jobs:
2020
node-version: 20
2121

2222
- name: Install dependencies
23-
run: npm install
23+
run: npm install -g pnpm
24+
25+
- name: Install dependencies
26+
run: pnpm install
2427

2528
- name: Lint
26-
run: npm run lint
29+
run: pnpm lint
2730

2831
test:
2932
runs-on: ubuntu-latest
@@ -36,10 +39,10 @@ jobs:
3639
node-version: 20
3740

3841
- name: Install dependencies
39-
run: npm install
42+
run: npm install -g pnpm
4043

4144
- name: Playground prepare
42-
run: npm run dev:prepare
45+
run: pnpm dev:prepare
4346

4447
- name: Test
45-
run: npm run test
48+
run: pnpm test

0 commit comments

Comments
 (0)