forked from webpack/webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
42 lines (36 loc) · 830 Bytes
/
.travis.yml
File metadata and controls
42 lines (36 loc) · 830 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
34
35
36
37
38
39
40
41
42
sudo: false
language: node_js
branches:
only:
- webpack-1
cache:
directories:
- $HOME/.npm
matrix:
include:
- os: linux
node_js: "7"
env: NO_WATCH_TESTS=1 JOB_PART=lint
- os: linux
node_js: "7"
env: NO_WATCH_TESTS=1 JOB_PART=test
- os: linux
node_js: "6"
env: NO_WATCH_TESTS=1 JOB_PART=test
- os: linux
node_js: "4.3"
env: NO_WATCH_TESTS=1 JOB_PART=test
- os: osx
node_js: "7"
env: NO_WATCH_TESTS=1 JOB_PART=test
allow_failures:
- os: osx
fast_finish: true
before_script:
- npm link
- npm link webpack
script: npm run travis:$JOB_PART
after_success:
- cat ./coverage/lcov.info | node_modules/.bin/coveralls --verbose
- cat ./coverage/coverage.json | node_modules/codecov.io/bin/codecov.io.js
- rm -rf ./coverage