Skip to content

Commit

Permalink
ci: Fix editor tests when coverage is enabled (no-changelog) (#7827)
Browse files Browse the repository at this point in the history
  • Loading branch information
netroy authored Nov 28, 2023
1 parent 685ffd7 commit 2f8cb41
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

strategy:
matrix:
node-version: [18.x, 20.5]
node-version: [18.x, 20.x]

steps:
- uses: actions/[email protected]
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
needs: install-and-build
strategy:
matrix:
node-version: [18.x, 20.5]
node-version: [18.x, 20.x]
with:
ref: ${{ inputs.branch }}
nodeVersion: ${{ matrix.node-version }}
Expand All @@ -61,7 +61,7 @@ jobs:
needs: install-and-build
strategy:
matrix:
node-version: [18.x, 20.5]
node-version: [18.x, 20.x]
steps:
- uses: actions/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion packages/design-system/vite.config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const vitestConfig = defineVitestConfig({
coverage: {
enabled: true,
provider: 'v8',
reporter: require('../../jest.config.js').coverageReporters,
reporter: process.env.COVERAGE_REPORT === 'true' ? 'text' : 'text-summary',
all: true,
},
}
Expand Down

0 comments on commit 2f8cb41

Please sign in to comment.