Skip to content

Commit

Permalink
chore!: drop support for legacy Node.js versions
Browse files Browse the repository at this point in the history
BREAKING CHANGE: drops support for all legacy Node.js versions (below version 18)

Signed-off-by: Jon Koops <[email protected]>
  • Loading branch information
jonkoops authored and rolandjitsu committed Oct 26, 2024
1 parent 72d5fa6 commit 859310e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [14, 16, 18, 20, 22]
node_version: [18, 20, 22]

steps:
- name: Checkout repository
Expand All @@ -26,10 +26,6 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

- name: Install compatible NPM version
if: matrix.node-version == 14
run: npm install -g npm@^9

- name: Install dependencies
run: npm ci

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,6 @@
"typescript": "^5.6.2"
},
"engines": {
"node": ">= 12"
"node": ">=18"
}
}

0 comments on commit 859310e

Please sign in to comment.