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 924e9e3 commit 92560e2Copy full SHA for 92560e2
packages/ember/scripts/run_tests.sh
@@ -1,11 +1,15 @@
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
+export MAISEY="good dog"
4
+
5
+bash --version
6
7
echo $TRAVIS
8
if $TRAVIS; then echo "$TRAVIS"; else echo "no TRAVIS"; fi
9
if [[ $TRAVIS ]]; then echo "$TRAVIS"; else echo "no [[ ]] TRAVIS"; fi
10
if [[ -n $TRAVIS ]]; then echo "-n $TRAVIS"; else echo "no -n TRAVIS"; fi
11
-if [[ $TRAVIS || $GITHUB_ACTIONS ]]; then
12
+if $TRAVIS || $GITHUB_ACTIONS; then
13
echo "In CI - running tests against multiple versions of Ember"
14
# yarn npm-run-all lint:* test:*
15
else
0 commit comments