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 ce8295b commit 6dfa324Copy full SHA for 6dfa324
.travis.yml
@@ -0,0 +1,29 @@
1
+# Hepburn
2
+language: objective-c
3
+osx_image: xcode7
4
+xcode_sdk: iphonesimulator9.0
5
+
6
+cache:
7
+ directories:
8
+ - node_modules
9
+ - ios/Pods
10
+ - ~/.nvm
11
12
+before_install:
13
+ - which nvm || curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.29.0/install.sh | bash
14
+ - export NVM_DIR=~/.nvm
15
+ - source ~/.nvm/nvm.sh --install
16
+ - nvm install 4.0
17
+ - brew update
18
+ - brew reinstall xctool
19
+ - brew reinstall watchman
20
+ - npm install
21
+ - gem install xcpretty
22
+ - gem install cocoapods
23
+ - pod install --project-directory=ios
24
25
+before_script:
26
+ - npm run compile:test
27
28
+script:
29
+ - npm test
0 commit comments