Skip to content

Commit 6764dcc

Browse files
authored
Merge pull request #2246 from murgatroid99/grpc-js_test_versions
grpc-js: Test against actively maintained Node versions
2 parents 091dbe4 + 223bf8f commit 6764dcc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

run-tests.bat

Lines changed: 3 additions & 3 deletions
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 10
32-
call nvm use 10
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 (10 12) 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

Lines changed: 1 addition & 1 deletion
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="10 12 14 16"
31+
node_versions="14 16"
3232
fi
3333

3434
set +ex

0 commit comments

Comments
 (0)