Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ see [README.md](../README.md). For the full architecture and conventions, see

## Prerequisites

- [Node.js](https://nodejs.org/) 18 or newer.
- [Node.js](https://nodejs.org/) 24 or newer (current LTS).

Node is only needed to **build or develop** NetGraph — not to run a built copy.
The output is plain static files (and a single self-contained HTML file) that
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ permissions:
jobs:
build-and-test:
# Build is OS-independent (Vite + tsc), so a single Linux runner is enough.
# The matrix backs up the "Node 18+" support claim in CONTRIBUTING.md.
# Pinned to Node 24 (current Active LTS), matching engines and the
# CONTRIBUTING support claim.
strategy:
fail-fast: false
matrix:
node: [20, 22]
node: [24]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
],
"type": "module",
"engines": {
"node": ">=18"
"node": ">=24"
},
"scripts": {
"dev": "vite",
Expand Down