Skip to content

Commit 2160e18

Browse files
committed
drop c8
1 parent 0475d51 commit 2160e18

7 files changed

Lines changed: 2 additions & 499 deletions

File tree

.c8rc.coveralls.json

Lines changed: 0 additions & 7 deletions
This file was deleted.

.c8rc.json

Lines changed: 0 additions & 7 deletions
This file was deleted.

.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
cache: 'npm'
3333
- run: npm ci
3434
- name: Generate coverage
35-
run: ./node_modules/.bin/c8 --config=./.c8rc.coveralls.json node --test "**/*.spec.ts"
35+
run: node --experimental-test-coverage --test "**/*.spec.ts" --test-reporter=lcov --test-reporter-destination=coverage/lcov.info
3636
- name: Coveralls GitHub Action
3737
uses: coverallsapp/github-action@v2.2.3
3838
with:

.npmignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
/*.js
66
/*.d.ts
77
/coverage/
8-
/.c8rc*.json
98
/.devcontainer/
109
/.github/
1110
/.idea/

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ tests:
2424

2525
.PHONY: coverage
2626
coverage: build
27-
@./node_modules/.bin/c8 node --test "**/*.spec.ts"
27+
@node --experimental-test-coverage --test "**/*.spec.ts" --test-reporter=lcov --test-reporter-destination=coverage/lcov.info

0 commit comments

Comments
 (0)