Fix: Code Coverage Badge Failed (#196)

* switch coverage to codecov

* reset node, increment ver

* remove auto-pass job var

* remove coverage 'env' note

* set badge with new action

* add fqvn for action

* fix step name

* make badge commit explicit
This commit is contained in:
Jonathan Smoley
2026-07-16 17:44:11 -07:00
committed by GitHub
parent 4aadea4611
commit 7583d6d179
10 changed files with 549 additions and 424 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
import { defineConfig, configDefaults } from 'vitest/config'
import { defineConfig } from 'vitest/config'
// config for vitest
export default defineConfig({
@@ -6,8 +6,8 @@ export default defineConfig({
globals: true, // <-- reduces test file imports
reporters: ['verbose'], // <-- verbose output
coverage: {
exclude: [...configDefaults.exclude, 'build/*', 'tests/*'], // <-- exclude JS build
reporter: ['text-summary'] // <-- report in text-summary
include: ['src/**/*.ts'],
reporter: 'json-summary'
}
}
})