Skip to content

Commit 2d4e6b2

Browse files
fix
1 parent 08ce972 commit 2d4e6b2

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.github/workflows/ci-win.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ jobs:
1313
timeout-minutes: 30
1414
strategy:
1515
matrix:
16-
node-version: [ 18.x, 20.x, 21.x ]
16+
node-version:
17+
# - 18.x (disabled)
18+
- 20.x
19+
- 21.x
1720
architecture: [x64, x86]
1821
os:
1922
- windows-2019

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- standard
1818
- experimental
1919
node-version:
20-
- 18.x
20+
# - 18.x (disabled because the newest version is unavailable)
2121
- 20.x
2222
- 21.x
2323
- 22.x

test/threadsafe_function/threadsafe_function_existing_tsfn.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ static Value TestCall(const CallbackInfo& info) {
8686
0,
8787
1,
8888
nullptr, /*finalize data*/
89-
TSFN_FINALIZER(FinalizeCB),
89+
FinalizeCB,
9090
testContext,
9191
hasData ? CallJSWithData : CallJSNoData,
9292
&testContext->tsfn);

test/typed_threadsafe_function/typed_threadsafe_function_existing_tsfn.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ static Value TestCall(const CallbackInfo& info) {
8888
0,
8989
1,
9090
nullptr, /*finalize data*/
91-
TSFN_FINALIZER(FinalizeCB),
91+
FinalizeCB,
9292
testContext,
9393
hasData ? CallJSWithData : CallJSNoData,
9494
&testContext->tsfn);

0 commit comments

Comments
 (0)