Skip to content

Commit 7827419

Browse files
committed
Remove unused reporters
1 parent 2170601 commit 7827419

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,9 @@ jobs:
2727
- name: Run lint
2828
run: npm run lint
2929

30-
- name: Run tests with co
30+
- name: Run tests with coverage
3131
run: npm run test:coverage
3232

33-
- name: List coverage output
34-
run: ls -R coverage
35-
3633
- name: Upload coverage to Codecov
3734
uses: codecov/codecov-action@v5
3835
with:

vitest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default defineConfig({
55
environment: 'jsdom',
66
globals: true,
77
coverage: {
8-
reporter: ['text', 'lcov', 'html', 'json'],
8+
reporter: ['text', 'lcov'],
99
reportsDirectory: './coverage',
1010
include: ['src/**'],
1111
},

0 commit comments

Comments
 (0)