Skip to content

Commit 223bf8f

Browse files
committed
Don't test on Node 18 yet
1 parent 955f088 commit 223bf8f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

run-tests.bat

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ SET JOBS=8
2828

2929
call nvm version
3030

31-
call nvm install 18
32-
call nvm use 18
31+
call nvm install 16
32+
call nvm use 16
3333

3434
git submodule update --init --recursive
3535

@@ -40,7 +40,7 @@ call npm install || goto :error
4040
SET JUNIT_REPORT_STACK=1
4141
SET FAILED=0
4242

43-
for %%v in (14 16 18) do (
43+
for %%v in (14 16) do (
4444
call nvm install %%v
4545
call nvm use %%v
4646
if "%%v"=="4" (

run-tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ cd $ROOT
2828
git submodule update --init --recursive
2929

3030
if [ ! -n "$node_versions" ] ; then
31-
node_versions="14 16 18"
31+
node_versions="14 16"
3232
fi
3333

3434
set +ex

0 commit comments

Comments
 (0)