File tree Expand file tree Collapse file tree 1 file changed +6
-18
lines changed Expand file tree Collapse file tree 1 file changed +6
-18
lines changed Original file line number Diff line number Diff line change @@ -16,31 +16,19 @@ jobs:
16
16
uses : actions/checkout@v3
17
17
18
18
- name : Install pnpm
19
- uses : pnpm/action-setup@v2
19
+ uses : pnpm/action-setup@v4
20
20
with :
21
- version : 8
21
+ version : 10
22
+ run_install : false
22
23
23
24
- name : Install Node.js
24
- uses : actions/setup-node@v3
25
+ uses : actions/setup-node@v4
25
26
with :
26
- node-version : 18
27
+ node-version : 20
27
28
cache : pnpm
28
29
29
- - name : Get pnpm store directory
30
- shell : bash
31
- run : |
32
- echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
33
-
34
- - uses : actions/cache@v3
35
- name : Setup pnpm cache
36
- with :
37
- path : ${{ env.STORE_PATH }}
38
- key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
39
- restore-keys : |
40
- ${{ runner.os }}-pnpm-store-
41
-
42
30
- name : Install dependencies
43
- run : pnpm install
31
+ run : pnpm install --frozen-lockfile
44
32
45
33
- name : build
46
34
env :
You can’t perform that action at this time.
0 commit comments