We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed1ed2c commit 06f0719Copy full SHA for 06f0719
scripts/travis-build.sh
@@ -1,5 +1,7 @@
1
#!/bin/bash -e
2
3
+
4
5
git clone https://github.com/creationix/nvm.git /tmp/.nvm
6
source /tmp/.nvm/nvm.sh
7
nvm install "$NODE_VERSION"
@@ -12,6 +14,8 @@ if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
12
14
elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
13
15
brew update
16
brew install yarn
17
+ brew tap wix/brew
18
+ brew install applesimutils
19
fi
20
21
node --version
@@ -23,3 +27,10 @@ yarn lint
23
27
yarn test
24
28
yarn build
25
29
yarn test-e2e
30
31
+if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
32
+ cd __e2e__/TestApp
33
+ yarn
34
+ yarn build-test-ios
35
+ yarn test-ios
36
+fi
0 commit comments