File tree Expand file tree Collapse file tree 3 files changed +17
-14
lines changed Expand file tree Collapse file tree 3 files changed +17
-14
lines changed Original file line number Diff line number Diff line change @@ -18,19 +18,19 @@ jobs:
18
18
pull-requests : write
19
19
20
20
steps :
21
- - uses : actions/checkout@v2
22
- - uses : actions/setup-node@v3
21
+ - uses : actions/checkout@v4
22
+ - uses : actions/setup-node@v4
23
23
with :
24
24
node-version : 18
25
25
26
- - uses : pnpm/action-setup@v2
26
+ - uses : pnpm/action-setup@v3
27
27
with :
28
28
version : 8.2.0
29
29
- name : Get pnpm store directory
30
30
id : pnpm-cache
31
31
shell : bash
32
32
run : echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
33
- - uses : actions/cache@v3
33
+ - uses : actions/cache@v4
34
34
name : Setup pnpm cache
35
35
with :
36
36
path : ${{ steps.pnpm-cache.outputs.STORE_PATH }}
Original file line number Diff line number Diff line change @@ -11,20 +11,23 @@ jobs:
11
11
static-analysis :
12
12
name : ' Lint and Type-check'
13
13
runs-on : ubuntu-latest
14
+ strategy :
15
+ matrix :
16
+ node-version : [18, 20]
14
17
steps :
15
- - uses : actions/checkout@v2
16
- - uses : actions/setup-node@v3
18
+ - uses : actions/checkout@v4
19
+ - uses : actions/setup-node@v4
17
20
with :
18
- node-version : 18
21
+ node-version : ${{ matrix.node-version }}
19
22
20
- - uses : pnpm/action-setup@v2
23
+ - uses : pnpm/action-setup@v3
21
24
with :
22
25
version : 8.2.0
23
26
- name : Get pnpm store directory
24
27
id : pnpm-cache
25
28
shell : bash
26
29
run : echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
27
- - uses : actions/cache@v3
30
+ - uses : actions/cache@v4
28
31
name : Setup pnpm cache
29
32
with :
30
33
path : ${{ steps.pnpm-cache.outputs.STORE_PATH }}
Original file line number Diff line number Diff line change @@ -13,21 +13,21 @@ jobs:
13
13
runs-on : ubuntu-latest
14
14
strategy :
15
15
matrix :
16
- node : [16, 18]
16
+ node : [16, 18, 20 ]
17
17
steps :
18
- - uses : actions/checkout@v2
19
- - uses : actions/setup-node@v3
18
+ - uses : actions/checkout@v4
19
+ - uses : actions/setup-node@v4
20
20
with :
21
21
node-version : ${{ matrix.node }}
22
22
23
- - uses : pnpm/action-setup@v2
23
+ - uses : pnpm/action-setup@v3
24
24
with :
25
25
version : 8.2.0
26
26
- name : Get pnpm store directory
27
27
id : pnpm-cache
28
28
shell : bash
29
29
run : echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
30
- - uses : actions/cache@v3
30
+ - uses : actions/cache@v4
31
31
name : Setup pnpm cache
32
32
with :
33
33
path : ${{ steps.pnpm-cache.outputs.STORE_PATH }}
You can’t perform that action at this time.
0 commit comments