-
Notifications
You must be signed in to change notification settings - Fork 985
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI testing on Node.js versions 8 & 10 (#371)
* .travis.yml cleanup * appveyor.yml & .travis.yml add Node.js versions 8 & 10
- Loading branch information
Christopher J. Brody
authored
Jun 15, 2018
1 parent
fdd12a1
commit 46da4bc
Showing
2 changed files
with
11 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,33 @@ | ||
language: objective-c | ||
osx_image: xcode9.2 | ||
sudo: false | ||
|
||
env: | ||
matrix: | ||
- TRAVIS_NODE_VERSION: '4.8.7' | ||
- TRAVIS_NODE_VERSION: '6.13' | ||
- TRAVIS_NODE_VERSION: '8' | ||
- TRAVIS_NODE_VERSION: '10' | ||
|
||
before_install: | ||
- npm cache clean -f | ||
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm | ||
&& git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm | ||
install $TRAVIS_NODE_VERSION | ||
- node --version | ||
|
||
install: | ||
- npm install | ||
- npm install ios-deploy | ||
- npm install -g codecov | ||
|
||
script: | ||
- npm run unit-tests | ||
- npm run e2e-tests | ||
- open -b com.apple.iphonesimulator | ||
- npm run objc-tests | ||
- npm run cover | ||
- npm run eslint | ||
after_script: codecov | ||
|
||
after_script: | ||
- codecov |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters