Skip to content

Commit fcb5b16

Browse files
committed
Breaking: update minimum node version to 16
1 parent 2e87ce4 commit fcb5b16

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/node.js.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Tests
33
on:
44
push:
55
branches:
6-
- '*'
6+
- main
77
pull_request:
88
branches: ['*']
99

@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: [14.x, 16.x, 18.x, 19.x]
15+
node-version: [16.x, 18.x, 20.x]
1616
os: [ubuntu-latest, macos-latest, windows-latest]
1717

1818
runs-on: ${{ matrix.os }}
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install dependencies
3030
run: npm install
3131
- name: Check coding standards
32-
if: matrix.node-version == '18.x' && matrix.os == 'ubuntu-latest'
32+
if: matrix.node-version == '20.x' && matrix.os == 'ubuntu-latest'
3333
run: npm run lint
3434
- name: Test
3535
run: npm run ci

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@
6060
"typescript": "^5.1.3"
6161
},
6262
"engines": {
63-
"node": ">=14"
63+
"node": ">=16"
6464
}
6565
}

0 commit comments

Comments
 (0)