Skip to content

Commit a164ce8

Browse files
jonkoopsrolandjitsu
authored andcommitted
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 f159a4a commit a164ce8

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
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
node-version: [14, 16, 18, 20, 22]
18+
node_version: [18, 20, 22]
1919

2020
steps:
2121
- name: Checkout repository
@@ -26,10 +26,6 @@ jobs:
2626
with:
2727
node-version: ${{ matrix.node-version }}
2828

29-
- name: Install compatible NPM version
30-
if: matrix.node-version == 14
31-
run: npm install -g npm@^9
32-
3329
- name: Install dependencies
3430
run: npm ci
3531

package.json

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

0 commit comments

Comments
 (0)