Skip to content

Commit 017dd01

Browse files
authored
Merge pull request #432 from netlify/chore/ci-node-latest
chore: run CI on latest Node.js
2 parents ec3cc21 + e474124 commit 017dd01

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/release-please.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ jobs:
2222
if: ${{ steps.release.outputs.release_created }}
2323
- uses: actions/setup-node@v2
2424
with:
25-
node-version: '15'
25+
node-version: '*'
26+
check-latest: true
2627
registry-url: 'https://registry.npmjs.org'
2728
if: ${{ steps.release.outputs.release_created }}
2829
- run: npm publish

.github/workflows/test.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,20 @@ jobs:
1616
strategy:
1717
matrix:
1818
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
2126
steps:
2227
- uses: actions/checkout@v2
2328
- name: Use Node.js ${{ matrix.node-version }}
2429
uses: actions/setup-node@v2
2530
with:
2631
node-version: ${{ matrix.node-version }}
32+
check-latest: true
2733
- name: Get npm cache directory
2834
id: npm-cache
2935
run: |

0 commit comments

Comments
 (0)