Skip to content

Commit 2c3e0d9

Browse files
committed
switch CI to npm
1 parent 945c3b1 commit 2c3e0d9

1 file changed

Lines changed: 6 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,19 @@ jobs:
1313
- name: Checkout
1414
uses: actions/checkout@v4
1515

16+
17+
1618
- name: Setup Node.js
1719
uses: actions/setup-node@v4
1820
with:
1921
node-version: '20'
20-
cache: 'pnpm'
21-
22-
- name: Setup pnpm
23-
uses: pnpm/action-setup@v4
24-
with:
25-
version: 10
26-
run_install: false
22+
cache: 'npm'
2723

2824
- name: Install dependencies
29-
run: pnpm install --frozen-lockfile
25+
run: npm ci
3026

3127
- name: Lint
32-
run: pnpm lint
28+
run: npm run lint
3329

3430
- name: Test
35-
run: pnpm test
31+
run: npm test

0 commit comments

Comments
 (0)