File tree Expand file tree Collapse file tree 2 files changed +15
-17
lines changed Expand file tree Collapse file tree 2 files changed +15
-17
lines changed Original file line number Diff line number Diff line change @@ -12,18 +12,17 @@ jobs:
1212 - name : Checkout
1313 uses : actions/checkout@v4
1414
15- - uses : pnpm/action-setup@v4
16- with :
17- version : 9
18-
1915 - uses : actions/setup-node@v4
2016 with :
21- node-version : ' 18.x'
17+ node-version : ' 20'
18+ corepack-enable : true
2219 registry-url : ' https://registry.npmjs.org'
23- cache : ' pnpm'
2420
25- - name : Install dependencies
26- run : pnpm i
21+ - name : Deps
22+ run : |
23+ npm i -g corepack@latest
24+ corepack enable
25+ pnpm i --frozen-lockfile
2726
2827 - name : Test
2928 run : pnpm test
Original file line number Diff line number Diff line change @@ -12,18 +12,17 @@ jobs:
1212 - name : Checkout
1313 uses : actions/checkout@v4
1414
15- - uses : pnpm/action- setup@v4
15+ - uses : actions/ setup-node@v3
1616 with :
17- version : 9
18-
19- - uses : actions/setup-node@v4
20- with :
21- node-version : ' 18.x'
17+ node-version : ' 20'
18+ corepack-enable : true
2219 registry-url : ' https://registry.npmjs.org'
23- cache : ' pnpm'
2420
25- - name : Install dependencies
26- run : pnpm i
21+ - name : Deps
22+ run : |
23+ npm i -g corepack@latest
24+ corepack enable
25+ pnpm i --frozen-lockfile
2726
2827 - name : Test
2928 run : pnpm test
You can’t perform that action at this time.
0 commit comments