File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2323 "lint:hbs" : " ember-template-lint ." ,
2424 "lint:js" : " eslint . --cache --cache-location '../../eslintcache/'" ,
2525 "start" : " ember serve" ,
26- "test" : " . ./scripts/run_tests.sh" ,
26+ "test" : " bash ./scripts/run_tests.sh" ,
2727 "test:ember" : " ember test" ,
2828 "test:ember-compatibility" : " ember try:each" ,
2929 "prepublishOnly" : " ember ts:precompile" ,
9494 "node" : " 12.18.3" ,
9595 "yarn" : " 1.22.4"
9696 }
97- }
97+ }
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ if $TRAVIS; then echo "$TRAVIS"; else echo "no TRAVIS"; fi
99if [[ $TRAVIS ]]; then echo " $TRAVIS " ; else echo " no [[ ]] TRAVIS" ; fi
1010if [[ -n $TRAVIS ]]; then echo " -n $TRAVIS " ; else echo " no -n TRAVIS" ; fi
1111
12- if $TRAVIS || $GITHUB_ACTIONS ; then
12+ if [[ $TRAVIS || $GITHUB_ACTIONS ]] ; then
1313 echo " In CI - running tests against multiple versions of Ember"
1414 # yarn npm-run-all lint:* test:*
1515else
You can’t perform that action at this time.
0 commit comments