File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 11# running compatibilty tests takes ~15 min on a 2019 2.6 GHz 6-Core Intel i7 16" MacBook Pro w 32 GB of RAM, vs ~25 sec
22# for the regular tests
33echo $TRAVIS
4- if [[ $TRAVIS ]]; then echo " $TRAVIS " ; else echo " no TRAVIS" ; fi
4+ if $TRAVIS ; then echo " $TRAVIS " ; else echo " no TRAVIS" ; fi
5+ if [[ $TRAVIS ]]; then echo " $TRAVIS " ; else echo " no [[ ]] TRAVIS" ; fi
56if [[ -n $TRAVIS ]]; then echo " -n $TRAVIS " ; else echo " no -n TRAVIS" ; fi
67
78if [[ $TRAVIS || $GITHUB_ACTIONS ]]; then
89 echo " In CI - running tests against multiple versions of Ember"
9- yarn npm-run-all lint:* test:*
10+ # yarn npm-run-all lint:* test:*
1011else
1112 echo " Tests running locally - will only run tests against default version of Ember"
1213 # only run the basic ember tests
13- yarn npm-run-all lint:* test:ember
14+ # yarn npm-run-all lint:* test:ember
1415fi
You can’t perform that action at this time.
0 commit comments