ci: Fix codecov reporting, and include all packages (no-changelog) (#8276)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-01-09 16:18:20 +01:00
committed by GitHub
parent 5032bf0e34
commit d1ca368c7d
3 changed files with 3 additions and 3 deletions

View File

@@ -15,7 +15,7 @@ export const vitestConfig = defineVitestConfig({
coverage: {
enabled: true,
provider: 'v8',
reporter: process.env.COVERAGE_REPORT === 'true' ? 'text' : 'text-summary',
reporter: process.env.CI === 'true' ? 'cobertura' : 'text-summary',
all: true,
},
}