forked from mzgoddard/hard-source-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
24 lines (22 loc) · 673 Bytes
/
.travis.yml
File metadata and controls
24 lines (22 loc) · 673 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
language: node_js
matrix:
fast_finish: true
allow_failures:
- node_js: 4
include:
- node_js: node
env: NPM_SCRIPT=lint
- node_js: node
env: NPM_SCRIPT=commitlint-travis
- node_js: node
env: NPM_SCRIPT=test NPM_INSTALL_EXTRA="webpack@4 file-loader@1 html-webpack-plugin@3.2.0"
- node_js: 8
env: NPM_SCRIPT=test NPM_INSTALL_EXTRA="webpack@3 file-loader@0.11 html-webpack-plugin@2.22.0"
- node_js: 8
env: NPM_SCRIPT=test NPM_INSTALL_EXTRA="webpack@4 file-loader@1 html-webpack-plugin@3.2.0"
before_script:
- npm install ${NPM_INSTALL_EXTRA}
script: npm run ${NPM_SCRIPT}
cache:
directories:
- node_modules