Skip to content

Commit

Permalink
wip: Refactor CI to use GitHub actions and generic bash scripts #846
Browse files Browse the repository at this point in the history
  • Loading branch information
cnouguier committed Apr 22, 2024
1 parent f95a5d6 commit bfe6966
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions scripts/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,14 @@ WORKSPACE_DIR="$(dirname "$ROOT_DIR")"
##

NODE_VER=16
MONGO_VER=""
MONGO_VER="4"
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 bfe6966

Please sign in to comment.