We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 111ce37 commit 68ddd62Copy full SHA for 68ddd62
.github/workflows/test.yml
@@ -38,3 +38,13 @@ jobs:
38
- run: npm test
39
env:
40
CI: true
41
+
42
+ - run: |
43
+ istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec --compilers js:babel-register \
44
+ && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js \
45
+ && rm -rf ./coverage
46
47
+ - name: Coveralls
48
+ uses: coverallsapp/github-action@master
49
+ with:
50
+ github-token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments