Skip to content

Commit

Permalink
chore: fix codecov artifacts and remove redundant coverage files
Browse files Browse the repository at this point in the history
  • Loading branch information
work-kevin-flynn committed Nov 27, 2024
1 parent ea6430f commit 653660d
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 380 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,6 @@ package.json.lerna_backup

*.crt
*.pem
.eslintcache
.eslintcache
**/coverage
**/jest-report.xml
6 changes: 0 additions & 6 deletions packages/base/coverage/coverage-summary.json

This file was deleted.

35 changes: 0 additions & 35 deletions packages/base/jest-report.xml

This file was deleted.

5 changes: 0 additions & 5 deletions packages/bridge/coverage/coverage-summary.json

This file was deleted.

59 changes: 0 additions & 59 deletions packages/bridge/jest-report.xml

This file was deleted.

6 changes: 0 additions & 6 deletions packages/react/coverage/coverage-summary.json

This file was deleted.

27 changes: 0 additions & 27 deletions packages/react/jest-report.xml

This file was deleted.

6 changes: 5 additions & 1 deletion packages/tools/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@ export default defineConfig({
provider: 'v8',
exclude: [...exclude, '**/__tests__/*.*'],
reportsDirectory: './coverage',
reporter: [['json-summary', { file: 'coverage-summary.json' }], ['text']],
reporter: [
['json-summary', { file: 'coverage-summary.json' }],
['lcov', { file: 'lcov.info' }],
['text'],
],
},
},
});
Loading

0 comments on commit 653660d

Please sign in to comment.