mirror of
https://github.com/kevinthedang/discord-ollama.git
synced 2026-08-08 23:54:01 -04:00
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:
+3
-3
@@ -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'
|
||||
}
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user