Skip to content

Commit

Permalink
Use Node 20 in CI and provide additional tests for Node 22 #14 [addit…
Browse files Browse the repository at this point in the history
…ional tests]
  • Loading branch information
cnouguier committed Jul 18, 2024
1 parent 0d6e85d commit f8c1133
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ NODE_VER=20
MONGO_VER=""
CI_STEP_NAME="Run tests"
CODE_COVERAGE=false
while getopts "n:cr:" option; do
while getopts "m:n:cr:" option; do
case $option in
m) # defines mongo version
MONGO_VER=$OPTARG
;;
n) # defines node version
NODE_VER=$OPTARG
;;
Expand Down

0 comments on commit f8c1133

Please sign in to comment.