set badge with new action

This commit is contained in:
JT2M0L3Y
2026-07-14 17:30:58 -07:00
parent e0888c4d7c
commit c6af5765c8
4 changed files with 21 additions and 13 deletions
+2 -3
View File
@@ -1,4 +1,4 @@
import { defineConfig, configDefaults } from 'vitest/config'
import { defineConfig } from 'vitest/config'
// config for vitest
export default defineConfig({
@@ -7,8 +7,7 @@ export default defineConfig({
reporters: ['verbose'], // <-- verbose output
coverage: {
include: ['src/**/*.ts'],
reporter: 'lcov',
reportsDirectory: './coverage'
reporter: 'json-summary'
}
}
})