Skip to content

Commit 3037a37

Browse files
committed
Add Node.js 17 to CI workflow. Use Node.js 16 for ESLint workflow.
1 parent f27d99d commit 3037a37

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
strategy:
3030
matrix:
3131
os: [ubuntu-latest, macOS-latest, windows-latest]
32-
node: [12.x, 14.x, 16.x]
32+
node: [12.x, 14.x, 16.x, 17.x]
3333
runs-on: ${{ matrix.os }}
3434
steps:
3535
- uses: actions/checkout@v2

.github/workflows/eslint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
- name: Setup Node.js
2121
uses: actions/setup-node@v1
2222
with:
23-
node-version: 14
23+
node-version: 16
2424
- run: npm install
2525
- run: npm run eslint

0 commit comments

Comments
 (0)