Skip to content

Commit 6718129

Browse files
authored
feat!: drop node<18 (#77)
1 parent f975c63 commit 6718129

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup Node.js
1616
uses: actions/setup-node@v5
1717
with:
18-
node-version: '12.x'
18+
node-version: 'lts/*'
1919
- name: Install dependencies
2020
run: npm install
2121
- name: Lint files
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
matrix:
2727
os: [ubuntu-latest]
28-
node: [24.x, 22.x, 20.x, 18.x, 16.x, 15.x, 14.x, 13.x, 12.x, 10.x]
28+
node: [24.x, 22.x, 20.x, 18.x]
2929
runs-on: ${{ matrix.os }}
3030
steps:
3131
- uses: actions/checkout@v5

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "ESLint Release Tools",
55
"main": "./lib/release-ops",
66
"engines": {
7-
"node": ">=10.0.0"
7+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
88
},
99
"bin": {
1010
"eslint-generate-release": "./bin/eslint-generate-release.js",

0 commit comments

Comments
 (0)