We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2ec649 commit 06934b7Copy full SHA for 06934b7
packages/ember/scripts/run_tests.sh
@@ -1,6 +1,9 @@
1
# 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
2
# for the regular tests
3
-env
+echo $TRAVIS
4
+if [[ $TRAVIS ]]; then echo "$TRAVIS"; else echo "no TRAVIS"; fi
5
+if [[ -n $TRAVIS ]]; then echo "-n $TRAVIS"; else echo "no -n TRAVIS"; fi
6
+
7
if [[ $TRAVIS || $GITHUB_ACTIONS ]]; then
8
echo "In CI - running tests against multiple versions of Ember"
9
yarn npm-run-all lint:* test:*
0 commit comments