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 23
23
"lint:hbs" : " ember-template-lint ." ,
24
24
"lint:js" : " eslint . --cache --cache-location '../../eslintcache/'" ,
25
25
"start" : " ember serve" ,
26
- "test" : " . ./scripts/run_tests.sh" ,
26
+ "test" : " bash ./scripts/run_tests.sh" ,
27
27
"test:ember" : " ember test" ,
28
28
"test:ember-compatibility" : " ember try:each" ,
29
29
"prepublishOnly" : " ember ts:precompile" ,
94
94
"node" : " 12.18.3" ,
95
95
"yarn" : " 1.22.4"
96
96
}
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
9
9
if [[ $TRAVIS ]]; then echo " $TRAVIS " ; else echo " no [[ ]] TRAVIS" ; fi
10
10
if [[ -n $TRAVIS ]]; then echo " -n $TRAVIS " ; else echo " no -n TRAVIS" ; fi
11
11
12
- if $TRAVIS || $GITHUB_ACTIONS ; then
12
+ if [[ $TRAVIS || $GITHUB_ACTIONS ]] ; then
13
13
echo " In CI - running tests against multiple versions of Ember"
14
14
# yarn npm-run-all lint:* test:*
15
15
else
You can’t perform that action at this time.
0 commit comments