Skip to content

Commit ad17122

Browse files
authored
Merge pull request #1874 from DarkGL/chore/cleanup-nodejs-setup
chore: update Node.js versions in CI workflows
2 parents bb689ba + ee21815 commit ad17122

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

.github/workflows/pr.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,11 @@ jobs:
1414
max-parallel: 3
1515
matrix:
1616
node-version:
17-
- 16.x
18-
- 18.x
19-
- 19.x
2017
- 20.x
2118
- 21.x
2219
- 22.x
2320
- 23.x
21+
- 24.x
2422

2523
steps:
2624
- uses: actions/checkout@v4

.github/workflows/release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,11 @@ jobs:
2929
# - NODE_VERSIONS in app.tsx
3030
# - NODE_VERSION_FOR_PREVIEW in main.ts
3131
node-version:
32-
- 16.x
33-
- 18.x
34-
- 19.x
3532
- 20.x
3633
- 21.x
3734
- 22.x
3835
- 23.x
36+
- 24.x
3937

4038
steps:
4139
- uses: actions/checkout@v4

docs/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import * as vegaLite from 'vega-lite';
44

55
// which results are attempted to load
66
// the first is selected automatically
7-
const NODE_VERSIONS = [23, 22, 21, 20, 19, 18, 16];
7+
const NODE_VERSIONS = [24, 23, 22, 21, 20];
88

99
const BUN_VERSIONS = [1.2];
1010

0 commit comments

Comments
 (0)