File tree 2 files changed +10
-3
lines changed
2 files changed +10
-3
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 : ' 15'
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 @@ -16,14 +16,20 @@ jobs:
16
16
strategy :
17
17
matrix :
18
18
os : [macos-latest, ubuntu-latest, windows-latest]
19
- node-version : [10.x, 15.x]
20
-
19
+ node-version : [10.x, '*']
20
+ exclude :
21
+ - os : macOS-latest
22
+ node-version : 10.x
23
+ - os : windows-latest
24
+ node-version : 10.x
25
+ fail-fast : false
21
26
steps :
22
27
- uses : actions/checkout@v2
23
28
- name : Use Node.js ${{ matrix.node-version }}
24
29
uses : actions/setup-node@v2
25
30
with :
26
31
node-version : ${{ matrix.node-version }}
32
+ check-latest : true
27
33
- name : Get npm cache directory
28
34
id : npm-cache
29
35
run : |
You can’t perform that action at this time.
0 commit comments