We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86dd0f8 commit f946169Copy full SHA for f946169
3 files changed
.github/workflows/release.yml
@@ -16,28 +16,23 @@ jobs:
16
- name: Checkout code
17
uses: actions/checkout@v4
18
19
- - name: Setup pnpm
20
- uses: pnpm/action-setup@v4
21
- with:
22
- version: 9.15.9
23
-
24
- name: Setup Node.js
25
uses: actions/setup-node@v4
26
with:
27
node-version: '20'
28
- cache: 'pnpm'
+ cache: 'npm'
29
30
- name: Install dependencies
31
- run: pnpm install --frozen-lockfile
+ run: npm ci
32
33
- name: Lint code
34
- run: pnpm lint
+ run: npm run lint
35
36
- name: Type check
37
- run: pnpm type-check
+ run: npm run type-check
38
39
- name: Build extension
40
- run: pnpm build
+ run: npm run build
41
42
- name: Create release archive
43
run: |
0 commit comments