Skip to content

Commit 85ddb63

Browse files
LittleGnomeMarco Knol
and
Marco Knol
authored
feat: enable support for node v22 (#607)
* feat: enable support for node v22 * refactor: fix indentations * feat: add node version 22 to unit-test strategy matrix * chore: downgrade chalk and other packages so it should work for all specified node versions --------- Co-authored-by: Marco Knol <[email protected]>
1 parent fad0879 commit 85ddb63

File tree

7 files changed

+1033
-690
lines changed

7 files changed

+1033
-690
lines changed

.github/workflows/master.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
nodeVersion: [ 16, 18, 20 ]
12+
nodeVersion: [ 16, 18, 20, 22 ]
1313
jdkVersion: [ openjdk9, openjdk10, openjdk11, openjdk21 ]
1414
steps:
1515
- name: Checkout source code

.github/workflows/pull-requests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
nodeVersion: [ 16, 18, 20 ]
13+
nodeVersion: [ 16, 18, 20, 22 ]
1414
jdkVersion: [ openjdk9, openjdk10, openjdk11, openjdk21 ]
1515
steps:
1616
- name: Checkout source code

binding.gyp

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
'<(javahome)/include/solaris',
7272
],
7373
'libraries': [
74-
'-L<(javalibdir)',
74+
'-L<(javalibdir)',
7575
'-Wl,-rpath,<(javalibdir)',
7676
'-ljvm'
7777
]

0 commit comments

Comments
 (0)