Skip to content

Commit

Permalink
infra: file-coverage-mode all (#1020)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinigami92 authored Mar 7, 2024
1 parent f1d9c52 commit 2a2f53a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/coverage-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,5 @@ jobs:
- name: Report Coverage
uses: davelosert/vitest-coverage-report-action@7cb62972347776255c2333807d26c60110c0df45 # v2.3.0
with:
file-coverage-mode: all
json-summary-compare-path: coverage-main/coverage-summary.json
6 changes: 3 additions & 3 deletions vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ export default defineConfig({
include: ['src'],
reportOnFailure: true,
thresholds: {
lines: 50,
branches: 50,
functions: 50,
lines: 55,
statements: 50,
functions: 53,
branches: 80,
},
},
reporters: process.env.CI_PREFLIGHT
Expand Down

0 comments on commit 2a2f53a

Please sign in to comment.