File tree 3 files changed +3610
-3197
lines changed
3 files changed +3610
-3197
lines changed Original file line number Diff line number Diff line change @@ -13,33 +13,21 @@ jobs:
13
13
timeout-minutes : 10
14
14
steps :
15
15
- name : Checkout Repo
16
- uses : actions/checkout@v2
16
+ uses : actions/checkout@v3
17
17
with :
18
18
fetch-depth : 0
19
19
20
- - name : Setup Node
21
- uses : actions/setup-node@v1
22
- with :
23
- node-version : 18
24
-
25
20
- name : Setup pnpm
26
- uses : pnpm/action-setup@v2.2.4
21
+ uses : pnpm/action-setup@v3
27
22
with :
28
- version : 8
23
+ version : 9
29
24
run_install : false
30
25
31
- - name : Get pnpm store directory
32
- id : pnpm-store
33
- run : echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
34
-
35
- - name : Use pnpm store
36
- uses : actions/cache@v3
37
- id : pnpm-cache
26
+ - name : Setup Node
27
+ uses : actions/setup-node@v4
38
28
with :
39
- path : ${{ steps.pnpm-store.outputs.pnpm_cache_dir }}
40
- key : ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
41
- restore-keys : |
42
- ${{ runner.os }}-pnpm-
29
+ node-version : 22
30
+ cache : ' pnpm'
43
31
44
32
- name : Install Dependencies
45
33
run : pnpm install --frozen-lockfile --prefer-offline
Original file line number Diff line number Diff line change @@ -22,29 +22,17 @@ jobs:
22
22
with :
23
23
fetch-depth : 0
24
24
25
- - name : Setup Node
26
- uses : actions/setup-node@v3
27
- with :
28
- node-version : 18
29
-
30
25
- name : Setup pnpm
31
- uses : pnpm/action-setup@v2.2.4
26
+ uses : pnpm/action-setup@v3
32
27
with :
33
- version : 8
28
+ version : 9
34
29
run_install : false
35
30
36
- - name : Get pnpm store directory
37
- id : pnpm-store
38
- run : echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
39
-
40
- - name : Use pnpm store
41
- uses : actions/cache@v3
42
- id : pnpm-cache
31
+ - name : Setup Node
32
+ uses : actions/setup-node@v4
43
33
with :
44
- path : ${{ steps.pnpm-store.outputs.pnpm_cache_dir }}
45
- key : ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
46
- restore-keys : |
47
- ${{ runner.os }}-pnpm-
34
+ node-version : 22
35
+ cache : ' pnpm'
48
36
49
37
- name : Install Dependencies
50
38
run : pnpm install --frozen-lockfile --prefer-offline
You can’t perform that action at this time.
0 commit comments