We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 945c3b1 commit 2c3e0d9Copy full SHA for 2c3e0d9
1 file changed
.github/workflows/ci.yml
@@ -13,23 +13,19 @@ jobs:
13
- name: Checkout
14
uses: actions/checkout@v4
15
16
+
17
18
- name: Setup Node.js
19
uses: actions/setup-node@v4
20
with:
21
node-version: '20'
- cache: 'pnpm'
-
22
- - name: Setup pnpm
23
- uses: pnpm/action-setup@v4
24
- with:
25
- version: 10
26
- run_install: false
+ cache: 'npm'
27
28
- name: Install dependencies
29
- run: pnpm install --frozen-lockfile
+ run: npm ci
30
31
- name: Lint
32
- run: pnpm lint
+ run: npm run lint
33
34
- name: Test
35
- run: pnpm test
+ run: npm test
0 commit comments