diff --git a/action/steps/run_tests.sh b/action/steps/run_tests.sh index 36be50e..f0646ef 100644 --- a/action/steps/run_tests.sh +++ b/action/steps/run_tests.sh @@ -67,8 +67,8 @@ ls -alh $UNITY_PROJECT_PATH # # Testing in EditMode # - -if [ $EDIT_MODE = true ]; then +EDIT_MODE_EXIT_CODE=0 +if [ "$EDIT_MODE" = "true" ]; then echo "" echo "###########################" echo "# Testing in EditMode #" @@ -104,8 +104,8 @@ fi # # Testing in PlayMode # - -if [ $PLAY_MODE = true ]; then +PLAY_MODE_EXIT_CODE=0 +if [ "$PLAY_MODE" = "true" ]; then echo "" echo "###########################" echo "# Testing in PlayMode #" @@ -149,7 +149,7 @@ echo "###########################" echo "" ls -alh $UNITY_PROJECT_PATH -if [ $EDIT_MODE = true ]; then +if [ "$EDIT_MODE" = "true" ]; then echo "" echo "###########################" echo "# Edit Mode Results #" @@ -159,7 +159,7 @@ if [ $EDIT_MODE = true ]; then cat "$FULL_ARTIFACTS_PATH/editmode-results.xml" | grep test-run | grep Passed fi -if [ $PLAY_MODE = true ]; then +if [ "$PLAY_MODE" = "true" ]; then echo "" echo "###########################" echo "# Play Mode Results #"