Skip to content

Add Node 24 to list of supported versions #235

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 6, 2025
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
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
matrix:
# If you change these, don't forget to update carryforward in the finish
# step as well.
node-version: [16, 18, 20, 22]
node-version: [16, 18, 20, 22, 24]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -43,4 +43,4 @@ jobs:
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
carryforward: "16,18,20,22"
carryforward: "16,18,20,22,24"
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v22.3
v24
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ and there are no external dependencies 😉

## Installation

sql-highlight is tested to work with Node.js 16, 18, 20 and 22.
sql-highlight is tested to work with Node.js 16, 18, 20, 22 and 24.

Install with Yarn:
```bash
Expand Down
5 changes: 5 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"organizeImports": {
"enabled": true
},
Expand Down
16 changes: 3 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,29 +8,19 @@
"type": "git",
"url": "[email protected]:scriptcoded/sql-highlight.git"
},
"files": [
"/lib"
],
"files": ["/lib"],
"engines": {
"node": ">=14"
},
"scripts": {
"pretest": "npm run lint",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "biome check",
"lint:fix": "biome check --write"
},
"keywords": [
"sql",
"syntax",
"highlight",
"highlighter"
],
"keywords": ["sql", "syntax", "highlight", "highlighter"],
"author": "Malcolm Nihlén <[email protected]>",
"contributors": [
"pomahtuk"
],
"contributors": ["pomahtuk"],
"funding": [
"https://github.com/scriptcoded/sql-highlight?sponsor=1",
{
Expand Down
Loading