Skip to content

Commit 9ff3ed1

Browse files
committed
Require Node >=18 for development
1 parent f14e2f0 commit 9ff3ed1

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
node-version: [16.x, 18.x, 20.x]
11+
node-version: [18.x, 20.x]
1212
steps:
1313
- uses: actions/checkout@v2
1414
- name: Use Node.js ${{ matrix.node-version }}

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,9 @@
132132
"typescript": "^4.3.5",
133133
"webpack": "^5.44.0"
134134
},
135+
"engines": {
136+
"node": ">=18.0.0"
137+
},
135138
"lint-staged": {
136139
"*.js": "eslint --report-unused-disable-directives",
137140
"**/*": "prettier --write --ignore-unknown"

0 commit comments

Comments
 (0)