ci: Move type-checking out of the build process (no-changelog) (#9730)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-06-13 16:46:25 +02:00
committed by GitHub
parent ab29ba9b58
commit c8f0029bc5
6 changed files with 12 additions and 161 deletions

View File

@@ -2,7 +2,6 @@ import vue from '@vitejs/plugin-vue';
import { resolve } from 'path';
import { defineConfig, mergeConfig } from 'vite';
import { sentryVitePlugin } from '@sentry/vite-plugin';
import checker from 'vite-plugin-checker';
import packageJSON from './package.json';
import { vitestConfig } from '../design-system/vite.config.mts';
@@ -78,13 +77,6 @@ const plugins = [
vue(),
];
if (!process.env.VITEST) {
plugins.push({
...checker({ vueTsc: true }),
apply: 'build'
});
}
const { SENTRY_AUTH_TOKEN: authToken, RELEASE: release } = process.env;
if (release && authToken) {
plugins.push(