Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): switch to node language for travis #155

Merged
merged 1 commit into from Dec 2, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
29 changes: 10 additions & 19 deletions .travis.yml
@@ -1,30 +1,21 @@
language: c++
language: node_js
sudo: false
env:
- NODE_VERSION="4"
- NODE_VERSION="5"
- NODE_VERSION="6"
- NODE_VERSION="7"
- NODE_VERSION="8"
- NODE_VERSION="9"
- NODE_VERSION="10"
node_js:
- 4
- 5
- 6
- 7
- 8
- 9
- 10

# keep this blank to make sure there are no before_install steps
before_install:

install:
- rm -rf ~/.nvm
- git clone https://github.com/creationix/nvm.git ~/.nvm
- source ~/.nvm/nvm.sh
- nvm install $NODE_VERSION
- node --version
- npm install
os:
- linux
- osx
script:
- npm test
after_success:
- npm run codecov -- -f coverage/lcov.info

notifications:
email: false