forked from ember-cli/ember-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
33 lines (29 loc) · 706 Bytes
/
.travis.yml
File metadata and controls
33 lines (29 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
sudo: false
cache:
directories:
- node_modules
- bower_components
env:
- NODE_VERSION=0.10
- NODE_VERSION=0.12
- NODE_VERSION=iojs
before_install:
- "npm config set spin false"
- "npm install -g npm@^2"
- "npm config set spin false"
os:
- osx
- linux
script: npm run-script test-all:cover
matrix:
fast_finish: true
install:
- test $TRAVIS_OS_NAME = "osx" && brew install nvm && source $(brew --prefix nvm)/nvm.sh || test $TRAVIS_OS_NAME = "linux"
- nvm install $NODE_VERSION
- node --version
- npm --version
- git --version
- npm install
after_script:
- cat coverage/lcov.info | codeclimate
- cat coverage/lcov.info | node_modules/coveralls/bin/coveralls.js