File tree Expand file tree Collapse file tree 1 file changed +13
-14
lines changed Expand file tree Collapse file tree 1 file changed +13
-14
lines changed Original file line number Diff line number Diff line change 42
42
- Node.js 0.8
43
43
- Node.js 0.10
44
44
- Node.js 0.12
45
- - io.js 1.x
46
- - io.js 2.x
47
- - io.js 3.x
48
45
- Node.js 4.x
49
46
- Node.js 5.x
50
47
- Node.js 6.x
@@ -234,18 +231,20 @@ jobs:
234
231
shell : bash
235
232
run : sudo apt-get -y install lcov
236
233
237
- - name : Collect coverage reports
238
- uses : actions/download-artifact@v4
234
+ - name : Collect code coverage
235
+ uses : coverallsapp/github-action@master
236
+ if : steps.list_env.outputs.nyc != ''
239
237
with :
240
- path : ./coverage
241
- pattern : coverage-node-*
242
-
243
- - name : Merge coverage reports
244
- shell : bash
245
- run : find ./coverage -name lcov.info -exec printf '-a %q\n' {} \; | xargs lcov -o ./lcov.info
238
+ github-token : ${{ secrets.GITHUB_TOKEN }}
239
+ flag-name : run-${{ matrix.test_number }}
240
+ parallel : true
246
241
247
- - name : Upload coverage report
248
- uses : coverallsapp/github-action@v2
242
+ coverage :
243
+ needs : test
244
+ runs-on : ubuntu-latest
245
+ steps :
246
+ - name : Upload code coverage
247
+ uses : coverallsapp/github-action@master
249
248
with :
250
249
github-token : ${{ secrets.GITHUB_TOKEN }}
251
- file : ./lcov.info
250
+ parallel-finished : true
You can’t perform that action at this time.
0 commit comments