Skip to content

Commit

Permalink
Merge pull request #2246 from murgatroid99/grpc-js_test_versions
Browse files Browse the repository at this point in the history
grpc-js: Test against actively maintained Node versions
  • Loading branch information
murgatroid99 authored Oct 19, 2022
2 parents 091dbe4 + 223bf8f commit 6764dcc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions run-tests.bat
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ SET JOBS=8

call nvm version

call nvm install 10
call nvm use 10
call nvm install 16
call nvm use 16

git submodule update --init --recursive

Expand All @@ -40,7 +40,7 @@ call npm install || goto :error
SET JUNIT_REPORT_STACK=1
SET FAILED=0

for %%v in (10 12) do (
for %%v in (14 16) do (
call nvm install %%v
call nvm use %%v
if "%%v"=="4" (
Expand Down
2 changes: 1 addition & 1 deletion run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ cd $ROOT
git submodule update --init --recursive

if [ ! -n "$node_versions" ] ; then
node_versions="10 12 14 16"
node_versions="14 16"
fi

set +ex
Expand Down

0 comments on commit 6764dcc

Please sign in to comment.