diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 345e06a4af261d..f190529faa247d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -89,9 +89,6 @@ jobs: - name: Test build run: pnpm run test-build - - name: Test build with CJS plugin - run: pnpm run test-build-legacy-cjs - - name: Test docs run: pnpm run test-docs diff --git a/package.json b/package.json index 4c388d2de6cedf..f877a59b859956 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "format": "prettier --write --cache .", "lint": "eslint --cache packages/*/{src,types,__tests__}/** playground/**/__tests__/**/*.ts scripts/**", "typecheck": "tsc -p scripts --noEmit && tsc -p playground --noEmit", - "test": "run-s test-unit test-serve test-build test-build-legacy-cjs", + "test": "run-s test-unit test-serve test-build", "test-serve": "vitest run -c vitest.config.e2e.ts", "test-build": "cross-env VITE_TEST_BUILD=1 vitest run -c vitest.config.e2e.ts", "test-build-legacy-cjs": "cross-env VITE_TEST_LEGACY_CJS_PLUGIN=1 pnpm test-build",