Skip to content

Commit a83eec5

Browse files
committed
chore!: drop support for legacy Node.js versions
BREAKING CHANGE: drops support for all legacy Node.js versions (below version 18) Signed-off-by: Jon Koops <[email protected]>
1 parent 7e3cef5 commit a83eec5

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
node_version: [14, 16, 18, 20, 22]
16+
node_version: [18, 20, 22]
1717

1818
steps:
1919
- uses: actions/checkout@v2
@@ -22,10 +22,6 @@ jobs:
2222
with:
2323
node-version: ${{ matrix.node_version }}
2424

25-
- name: Install compatible NPM version
26-
if: matrix.node_version == 14
27-
run: npm install -g npm@^9
28-
2925
- name: Install
3026
run: npm ci
3127
- name: Test

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,6 @@
6161
"typescript": "^5.6.2"
6262
},
6363
"engines": {
64-
"node": ">= 12"
64+
"node": ">=18"
6565
}
6666
}

0 commit comments

Comments
 (0)