We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e56c93d commit ab226d0Copy full SHA for ab226d0
1 file changed
.github/workflows/ci.yaml
@@ -13,10 +13,13 @@ jobs:
13
uses: actions/setup-node@v3
14
with:
15
node-version: '18.x'
16
- - name: Install dependencies
17
- run: npm install
+ - name: Install pnpm and dependencies
+ uses: pnpm/action-setup@v2
18
+ with:
19
+ version: latest
20
+ run_install: true
21
- name: Lint
- run: npm run lint:check
22
+ run: pnpm lint:check
23
test:
24
runs-on: ubuntu-22.04
25
steps:
@@ -29,7 +32,10 @@ jobs:
29
32
30
33
31
34
35
36
37
38
39
40
- name: Test
- run: npm run test:unit
41
+ run: pnpm test:unit
0 commit comments