File tree Expand file tree Collapse file tree 4 files changed +6269
-8415
lines changed Expand file tree Collapse file tree 4 files changed +6269
-8415
lines changed Original file line number Diff line number Diff line change @@ -22,16 +22,12 @@ 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
29
25
- name : Setup Node.js v14.x
30
26
uses : actions/setup-node@v2
31
27
with :
32
28
node-version : 14
33
- cache : ' pnpm '
29
+ cache : ' yarn '
34
30
- name : Install
35
- run : pnpm install
31
+ run : yarn install
36
32
- name : Lint
37
- run : pnpm run lint
33
+ run : yarn lint
Original file line number Diff line number Diff line change @@ -26,16 +26,12 @@ 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
33
29
- name : Setup Node.js ${{ matrix.node }}
34
30
uses : actions/setup-node@v2
35
31
with :
36
32
node-version : ${{ matrix.node }}
37
- cache : ' pnpm '
33
+ cache : ' yarn '
38
34
- name : Install
39
- run : pnpm install
35
+ run : yarn install
40
36
- name : Test
41
- run : pnpm test
37
+ run : yarn test
You can’t perform that action at this time.
0 commit comments