File tree 2 files changed +10
-5
lines changed
2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -31,23 +31,23 @@ jobs:
31
31
include :
32
32
- name : Node.js 0.10
33
33
node-version : " 0.10"
34
- npm-i : mocha@3.5.3 supertest@2.0.0
34
+ npm-i : minimatch@3.0.4 mocha@3.5.3 supertest@2.0.0
35
35
36
36
- name : Node.js 0.12
37
37
node-version : " 0.12"
38
- npm-i : mocha@3.5.3 supertest@2.0.0
38
+ npm-i : minimatch@3.0.4 mocha@3.5.3 supertest@2.0.0
39
39
40
40
- name : io.js 1.x
41
41
node-version : " 1.8"
42
- npm-i : mocha@3.5.3 supertest@2.0.0
42
+ npm-i : minimatch@3.0.4 mocha@3.5.3 supertest@2.0.0
43
43
44
44
- name : io.js 2.x
45
45
node-version : " 2.5"
46
- npm-i : mocha@3.5.3 supertest@2.0.0
46
+ npm-i : minimatch@3.0.4 mocha@3.5.3 supertest@2.0.0
47
47
48
48
- name : io.js 3.x
49
49
node-version : " 3.3"
50
- npm-i : mocha@3.5.3 supertest@2.0.0
50
+ npm-i : minimatch@3.0.4 mocha@3.5.3 supertest@2.0.0
51
51
52
52
- name : Node.js 4.x
53
53
node-version : " 4.9"
Original file line number Diff line number Diff line change @@ -36,6 +36,11 @@ install:
36
36
sls "^eslint(-|$)" | `
37
37
%{ npm rm --silent --save-dev $_ }
38
38
# Setup Node.js version-specific dependencies
39
+ - ps : |
40
+ # minimatch for Node.js < 4
41
+ if ([int]$env:nodejs_version.split(".")[0] -lt 4) {
42
+ npm install --silent --save-dev minimatch@3.0.4
43
+ }
39
44
- ps : |
40
45
# mocha for testing
41
46
# - use 3.x for Node.js < 4
You can’t perform that action at this time.
0 commit comments