vitest-plugin-github-actions
v0.0.5
Published
GitHub actions error and coverage reporter for vitest.
Downloads
7
Readme
vitest-plugin-github-actions
GitHub actions error and coverage reporter for vitest.
Install
pnpm install --save-dev vitest-plugin-github-actions
Config
// vitest.config.ts || vite.config.ts
// import { defineConfig } from 'vite'
import { defineConfig } from 'vitest/config'
import GitHubVitest from 'vitest-plugin-github-actions'
export default defineConfig({
test: {
reporters: process.env.GITHUB_ACTIONS
? ['default', new GitHubVitest()]
: 'default',
},
})
Credits
Thanks to: