fix the test CI (#1405)

* run tests without concurrency

* do not use cache in rpt2 during test
This commit is contained in:
yz-yu
2026-04-01 12:00:00 +08:00
committed by GitHub
parent 297e4bc4c7
commit a939c792db
2 changed files with 2 additions and 1 deletions

View File

@@ -37,7 +37,7 @@
}, },
"scripts": { "scripts": {
"build:all": "NODE_OPTIONS='--max-old-space-size=4096' yarn run concurrently --success=all -r -m=1 'yarn workspaces-to-typescript-project-references' 'yarn turbo run prepublish'", "build:all": "NODE_OPTIONS='--max-old-space-size=4096' yarn run concurrently --success=all -r -m=1 'yarn workspaces-to-typescript-project-references' 'yarn turbo run prepublish'",
"test": "yarn run concurrently --success=all -r -m=1 'yarn workspaces-to-typescript-project-references --check' 'yarn turbo run test'", "test": "yarn run concurrently --success=all -r -m=1 'yarn workspaces-to-typescript-project-references --check' 'yarn turbo run test --concurrency=1'",
"test:watch": "yarn turbo run test:watch", "test:watch": "yarn turbo run test:watch",
"test:update": "yarn turbo run test:update", "test:update": "yarn turbo run test:update",
"format": "yarn prettier --write '**/*.{ts,md}'", "format": "yarn prettier --write '**/*.{ts,md}'",

View File

@@ -13,6 +13,7 @@ export async function compileTSCode(inputFilePath: string) {
resolve() as unknown as rollup.Plugin, resolve() as unknown as rollup.Plugin,
_typescript({ _typescript({
tsconfigOverride: { compilerOptions: { module: 'ESNext' } }, tsconfigOverride: { compilerOptions: { module: 'ESNext' } },
clean: true,
}) as unknown as rollup.Plugin, }) as unknown as rollup.Plugin,
], ],
}); });