Skip to content

Commit 2bc0d61

Browse files
committed
ci: run test suite for Node 24 as well
1 parent 31ab374 commit 2bc0d61

File tree

4 files changed

+7
-17
lines changed

4 files changed

+7
-17
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
matrix:
1313
# If you change these, don't forget to update carryforward in the finish
1414
# step as well.
15-
node-version: [16, 18, 20, 22]
15+
node-version: [16, 18, 20, 22, 24]
1616

1717
steps:
1818
- uses: actions/checkout@v4
@@ -43,4 +43,4 @@ jobs:
4343
with:
4444
github-token: ${{ secrets.GITHUB_TOKEN }}
4545
parallel-finished: true
46-
carryforward: "16,18,20,22"
46+
carryforward: "16,18,20,22,24"

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v22.3
1+
v24

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ and there are no external dependencies 😉
1717

1818
## Installation
1919

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

2222
Install with Yarn:
2323
```bash

package.json

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,29 +8,19 @@
88
"type": "git",
99
"url": "[email protected]:scriptcoded/sql-highlight.git"
1010
},
11-
"files": [
12-
"/lib"
13-
],
11+
"files": ["/lib"],
1412
"engines": {
1513
"node": ">=14"
1614
},
1715
"scripts": {
18-
"pretest": "npm run lint",
1916
"test": "jest",
2017
"test:coverage": "jest --coverage",
2118
"lint": "biome check",
2219
"lint:fix": "biome check --write"
2320
},
24-
"keywords": [
25-
"sql",
26-
"syntax",
27-
"highlight",
28-
"highlighter"
29-
],
21+
"keywords": ["sql", "syntax", "highlight", "highlighter"],
3022
"author": "Malcolm Nihlén <[email protected]>",
31-
"contributors": [
32-
"pomahtuk"
33-
],
23+
"contributors": ["pomahtuk"],
3424
"funding": [
3525
"https://github.com/scriptcoded/sql-highlight?sponsor=1",
3626
{

0 commit comments

Comments
 (0)