File tree Expand file tree Collapse file tree 5 files changed +8361
-6236
lines changed Expand file tree Collapse file tree 5 files changed +8361
-6236
lines changed Original file line number Diff line number Diff line change @@ -22,12 +22,16 @@ jobs:
22
22
steps :
23
23
- name : Checkout
24
24
uses : actions/checkout@v2
25
+ - name : Install pnpm
26
+ uses : pnpm/action-setup@v2.0.1
27
+ with :
28
+ version : 6.17.0
25
29
- name : Setup Node.js v14.x
26
30
uses : actions/setup-node@v2
27
31
with :
28
32
node-version : 14
29
- cache : ' yarn '
33
+ cache : ' pnpm '
30
34
- name : Install
31
- run : yarn install
35
+ run : pnpm install
32
36
- name : Lint
33
- run : yarn lint
37
+ run : pnpm lint
Original file line number Diff line number Diff line change @@ -26,12 +26,16 @@ jobs:
26
26
steps :
27
27
- name : Checkout
28
28
uses : actions/checkout@v2
29
+ - name : Install pnpm
30
+ uses : pnpm/action-setup@v2.0.1
31
+ with :
32
+ version : 6.17.0
29
33
- name : Setup Node.js ${{ matrix.node }}
30
34
uses : actions/setup-node@v2
31
35
with :
32
36
node-version : ${{ matrix.node }}
33
- cache : ' yarn '
37
+ cache : ' pnpm '
34
38
- name : Install
35
- run : yarn install
39
+ run : pnpm install
36
40
- name : Test
37
- run : yarn test
41
+ run : pnpm test
You can’t perform that action at this time.
0 commit comments