We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87c5f9e commit 3ea15b1Copy full SHA for 3ea15b1
.github/workflows/ci.yml
@@ -9,10 +9,13 @@ jobs:
9
- uses: actions/setup-node@master
10
with:
11
node-version: 20
12
- - name: yarn
13
- run: yarn --frozen-lockfile
+ - uses: pnpm/action-setup@v2
+ with:
14
+ version: 8
15
+ - name: Install dependencies
16
+ run: pnpm i --frozen-lockfile
17
- name: lint
- run: yarn lint
18
+ run: pnpm lint
19
20
tsc:
21
runs-on: ubuntu-latest
@@ -21,10 +24,13 @@ jobs:
24
22
25
23
26
27
28
29
30
31
32
- name: tsc
- run: yarn tsc
33
+ run: pnpm tsc
34
35
# test:
36
# runs-on: ubuntu-latest
0 commit comments