File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 22
22
if : ${{ steps.release.outputs.release_created }}
23
23
- uses : actions/setup-node@v2
24
24
with :
25
- node-version : ' 14'
25
+ node-version : ' *'
26
+ check-latest : true
26
27
registry-url : ' https://registry.npmjs.org'
27
28
if : ${{ steps.release.outputs.release_created }}
28
29
- run : npm publish
Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
steps :
11
11
- uses : actions/checkout@v2
12
- - uses : actions/setup-node@v1
12
+ - uses : actions/setup-node@v2
13
13
with :
14
- node-version : 12
14
+ node-version : ' *'
15
+ check-latest : true
15
16
registry-url : ' https://registry.npmjs.org'
16
17
- run : npm run bump-swagger
17
18
- uses : stefanzweifel/git-auto-commit-action@v4
18
19
with :
19
- commit_message : " chore: bump swagger.yml file"
20
+ commit_message : ' chore: bump swagger.yml file'
Original file line number Diff line number Diff line change @@ -13,13 +13,14 @@ jobs:
13
13
strategy :
14
14
matrix :
15
15
os : [ubuntu-latest, macOS-latest, windows-latest]
16
- node_version : [14 ]
16
+ node_version : ['*' ]
17
17
runs-on : ${{ matrix.os }}
18
18
steps :
19
19
- name : Install Node.js ${{ matrix.node }}
20
20
uses : actions/setup-node@v2
21
21
with :
22
22
node-version : ${{ matrix.node_version }}
23
+ check-latest : true
23
24
- name : Git checkout
24
25
uses : actions/checkout@v2
25
26
- name : Install dependencies
You can’t perform that action at this time.
0 commit comments