diff --git a/.github/workflows/ci-master.yml b/.github/workflows/ci-master.yml index 7509fecb8d..715079effb 100644 --- a/.github/workflows/ci-master.yml +++ b/.github/workflows/ci-master.yml @@ -17,7 +17,7 @@ jobs: strategy: matrix: - node-version: [18.x, 20.5] + node-version: [18.x, 20.x] steps: - uses: actions/checkout@v3.5.3 @@ -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 }} @@ -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/checkout@v3.5.3 with: diff --git a/packages/design-system/vite.config.mts b/packages/design-system/vite.config.mts index d026973f44..a8ca4559a5 100644 --- a/packages/design-system/vite.config.mts +++ b/packages/design-system/vite.config.mts @@ -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, }, }