forked from django-webpack/webpack-bundle-tracker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
45 lines (44 loc) · 1.08 KB
/
.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
34
35
36
37
38
39
40
41
42
43
44
45
stages:
- test
jobs:
include:
- name: Tests Webpack 1
stage: test
language: node_js
node_js:
- "12"
- "11"
before_install:
- yarn global add webpack@^1.0.0
- export NODE_PATH=$(yarn global dir)/node_modules
script: yarn run travis
- name: Tests Webpack 2
stage: test
language: node_js
node_js:
- "12"
- "11"
before_install:
- yarn global add webpack@^2.0.0
- export NODE_PATH=$(yarn global dir)/node_modules
script: yarn run travis
- name: Tests Webpack 3
stage: test
language: node_js
node_js:
- "12"
- "11"
before_install:
- yarn global add webpack@^3.0.0
- export NODE_PATH=$(yarn global dir)/node_modules
script: yarn run travis
- name: Tests Webpack 4
stage: test
language: node_js
node_js:
- "12"
- "11"
before_install:
- yarn global add webpack@^4.0.0
- export NODE_PATH=$(yarn global dir)/node_modules
script: yarn run travis