forked from amireh/happypack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
33 lines (27 loc) · 791 Bytes
/
.travis.yml
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
language: node_js
env:
- HAPPY_TEST_TIMEOUT=60000
node_js:
- stable
- 6
install:
- npm install --ignore-scripts
- (cd upstream/webpack1; npm install)
- (cd upstream/webpack2; npm install)
- (cd upstream/webpack3; npm install)
- (cd upstream/webpack4; npm install)
- (cd packages/@happypack/example-utils; npm install --ignore-scripts)
- (cd packages/@happypack/test-utils; npm install --ignore-scripts)
- (cd packages/@happypack/webpack-config-composer; npm install --ignore-scripts)
script:
- npm run lint
- npm run test:coverage
after_success:
- npm run coverage:ci
cache:
directories:
- node_modules
- upstream/webpack1/node_modules
- upstream/webpack2/node_modules
- upstream/webpack3/node_modules
- upstream/webpack4/node_modules