Skip to content

Commit 077cbb2

Browse files
authored
chore: drop support for Node 16 (#246)
1 parent 437520a commit 077cbb2

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ${{matrix.os}}
1414
strategy:
1515
matrix:
16-
node-version: [18.x]
16+
node-version: [18.x, 20.x]
1717
os: [ubuntu-latest, macos-latest, windows-latest]
1818
fail-fast: false
1919
steps:

.github/workflows/vis-network.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
strategy:
2020
matrix:
21-
node-version: [18.x]
21+
node-version: [18.x, 20.x]
2222
fail-fast: false
2323
steps:
2424
- name: Harden Runner

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ The CLI allow to load the JSON into a Webpage with the **open** command. The pag
4949

5050
## 🚧 Requirements
5151

52-
- [Node.js](https://nodejs.org/en/) LTS 16.x or higher
52+
- [Node.js](https://nodejs.org/en/) v18 or higher
5353

5454
## 💃 Getting Started
5555

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
},
1010
"type": "module",
1111
"engines": {
12-
"node": ">=16.1.0"
12+
"node": ">=18"
1313
},
1414
"scripts": {
1515
"eslint": "eslint bin src test",

0 commit comments

Comments
 (0)