Skip to content

Commit f946169

Browse files
committed
fix(ci): use npm instead of pnpm
1 parent 86dd0f8 commit f946169

3 files changed

Lines changed: 3240 additions & 1931 deletions

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,28 +16,23 @@ jobs:
1616
- name: Checkout code
1717
uses: actions/checkout@v4
1818

19-
- name: Setup pnpm
20-
uses: pnpm/action-setup@v4
21-
with:
22-
version: 9.15.9
23-
2419
- name: Setup Node.js
2520
uses: actions/setup-node@v4
2621
with:
2722
node-version: '20'
28-
cache: 'pnpm'
23+
cache: 'npm'
2924

3025
- name: Install dependencies
31-
run: pnpm install --frozen-lockfile
26+
run: npm ci
3227

3328
- name: Lint code
34-
run: pnpm lint
29+
run: npm run lint
3530

3631
- name: Type check
37-
run: pnpm type-check
32+
run: npm run type-check
3833

3934
- name: Build extension
40-
run: pnpm build
35+
run: npm run build
4136

4237
- name: Create release archive
4338
run: |

0 commit comments

Comments
 (0)