@@ -34,43 +34,43 @@ jobs:
34
34
- name : Node.js 0.8
35
35
node-version : " 0.8"
36
36
npm-i : mocha@2.5.3 supertest@1.1.0
37
- npm-rm : istanbul
37
+ npm-rm : nyc
38
38
39
39
- name : Node.js 0.10
40
40
node-version : " 0.10"
41
- npm-i : mocha@3.5.3 supertest@2.0.0
41
+ npm-i : mocha@3.5.3 nyc@10.3.2 supertest@2.0.0
42
42
43
43
- name : Node.js 0.12
44
44
node-version : " 0.12"
45
- npm-i : mocha@3.5.3 supertest@2.0.0
45
+ npm-i : mocha@3.5.3 nyc@10.3.2 supertest@2.0.0
46
46
47
47
- name : io.js 1.x
48
48
node-version : " 1.8"
49
- npm-i : mocha@3.5.3 supertest@2.0.0
49
+ npm-i : mocha@3.5.3 nyc@10.3.2 supertest@2.0.0
50
50
51
51
- name : io.js 2.x
52
52
node-version : " 2.5"
53
- npm-i : mocha@3.5.3 supertest@2.0.0
53
+ npm-i : mocha@3.5.3 nyc@10.3.2 supertest@2.0.0
54
54
55
55
- name : io.js 3.x
56
56
node-version : " 3.3"
57
- npm-i : mocha@3.5.3 supertest@2.0.0
57
+ npm-i : mocha@3.5.3 nyc@10.3.2 supertest@2.0.0
58
58
59
59
- name : Node.js 4.x
60
60
node-version : " 4.9"
61
- npm-i : mocha@5.2.0 supertest@3.4.2
61
+ npm-i : mocha@5.2.0 nyc@11.9.0 supertest@3.4.2
62
62
63
63
- name : Node.js 5.x
64
64
node-version : " 5.12"
65
- npm-i : mocha@5.2.0 supertest@3.4.2
65
+ npm-i : mocha@5.2.0 nyc@11.9.0 supertest@3.4.2
66
66
67
67
- name : Node.js 6.x
68
68
node-version : " 6.17"
69
- npm-i : mocha@6.2.2
69
+ npm-i : mocha@6.2.2 nyc@14.1.1
70
70
71
71
- name : Node.js 7.x
72
72
node-version : " 7.10"
73
- npm-i : mocha@6.2.2
73
+ npm-i : mocha@6.2.2 nyc@14.1.1
74
74
75
75
- name : Node.js 8.x
76
76
node-version : " 8.17"
@@ -154,7 +154,7 @@ jobs:
154
154
- name : Run tests
155
155
shell : bash
156
156
run : |
157
- if npm -ps ls istanbul | grep -q istanbul ; then
157
+ if npm -ps ls nyc | grep -q nyc ; then
158
158
npm run test-ci
159
159
else
160
160
npm test
@@ -166,7 +166,7 @@ jobs:
166
166
167
167
- name : Collect code coverage
168
168
uses : coverallsapp/github-action@master
169
- if : steps.list_env.outputs.istanbul != ''
169
+ if : steps.list_env.outputs.nyc != ''
170
170
with :
171
171
github-token : ${{ secrets.GITHUB_TOKEN }}
172
172
flag-name : run-${{ matrix.test_number }}
0 commit comments