We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06f0719 commit ca9a795Copy full SHA for ca9a795
scripts/travis-build.sh
@@ -7,6 +7,9 @@ source /tmp/.nvm/nvm.sh
7
nvm install "$NODE_VERSION"
8
nvm use --delete-prefix "$NODE_VERSION"
9
10
+node --version
11
+npm --version
12
+
13
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
14
export DISPLAY=:99.0
15
sh -e /etc/init.d/xvfb start
@@ -16,10 +19,9 @@ elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
16
19
brew install yarn
17
20
brew tap wix/brew
18
21
brew install applesimutils
-fi
22
-node --version
-npm --version
23
+ cd __e2e__/TestApp && yarn && cd ..
24
+fi
25
26
yarn
27
cd npm-package && yarn && cd ..
@@ -29,8 +31,6 @@ yarn build
29
31
yarn test-e2e
30
32
33
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
- cd __e2e__/TestApp
- yarn
34
yarn build-test-ios
35
yarn test-ios
36
fi
0 commit comments