File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 8
8
publish :
9
9
runs-on : ubuntu-latest
10
10
steps :
11
- - uses : actions/checkout@v2
11
+ - uses : actions/checkout@v3
12
12
with :
13
13
submodules : true
14
- - uses : actions/cache@v2
14
+ - uses : actions/cache@v3
15
15
with :
16
16
path : ~/.npm
17
17
key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
18
18
restore-keys : |
19
19
${{ runner.os }}-node-
20
- - uses : actions/setup-node@v1
20
+ - uses : actions/setup-node@v3
21
21
with :
22
- node-version : 14
22
+ node-version : 18
23
23
- run : npm ci
24
24
- run : npm run build:tsc
25
25
- run : npm run build:package
Original file line number Diff line number Diff line change @@ -10,19 +10,19 @@ jobs:
10
10
build :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v2
13
+ - uses : actions/checkout@v3
14
14
with :
15
15
submodules : true
16
- - uses : actions/cache@v2
16
+ - uses : actions/cache@v3
17
17
with :
18
18
path : ~/.npm
19
19
key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
20
20
restore-keys : |
21
21
${{ runner.os }}-node-
22
22
- name : Use Node.js ${{ matrix.node-version }}
23
- uses : actions/setup-node@v1
23
+ uses : actions/setup-node@v3
24
24
with :
25
- node-version : 14
25
+ node-version : 18
26
26
- run : npm ci
27
27
- run : npm run build:tsc
28
28
# - run: npm run build:lib
You can’t perform that action at this time.
0 commit comments