File tree Expand file tree Collapse file tree 2 files changed +9
-11
lines changed Expand file tree Collapse file tree 2 files changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -25,16 +25,15 @@ jobs:
25
25
26
26
steps :
27
27
- name : Checkout Repository
28
- uses : actions/checkout@v3
28
+ uses : actions/checkout@v4
29
29
30
30
- name : Use Nodejs ${{ matrix.node-version }}
31
- uses : actions/setup-node@v3
31
+ uses : actions/setup-node@v4
32
32
with :
33
33
node-version : ${{ matrix.node-version }}
34
- cache : npm
35
34
36
35
- name : Install dependencies
37
- run : npm ci
36
+ run : npm install
38
37
39
38
- name : Run Tests Windows (incomplete coverage)
40
39
if : matrix.platform.os == 'windows-latest'
Original file line number Diff line number Diff line change @@ -31,21 +31,20 @@ jobs:
31
31
- name : Checkout
32
32
uses : actions/checkout@v3
33
33
- name : Use Nodejs ${{ matrix.node-version }}
34
- uses : actions/setup-node@v3
34
+ uses : actions/setup-node@v4
35
35
with :
36
- node-version : 18.x
37
- cache : npm
36
+ node-version : 20.x
38
37
- name : Install dependencies
39
- run : npm ci
38
+ run : npm install
40
39
- name : Generate typedocs
41
40
run : npm run typedoc
42
41
43
42
- name : Setup Pages
44
- uses : actions/configure-pages@v3
43
+ uses : actions/configure-pages@v4
45
44
- name : Upload artifact
46
- uses : actions/upload-pages-artifact@v1
45
+ uses : actions/upload-pages-artifact@v3
47
46
with :
48
47
path : ' ./docs'
49
48
- name : Deploy to GitHub Pages
50
49
id : deployment
51
- uses : actions/deploy-pages@v1
50
+ uses : actions/deploy-pages@v4
You can’t perform that action at this time.
0 commit comments