diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ab7ad7e443..8dbf1c773a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,6 +71,6 @@ jobs: - name: run tests (branch) timeout-minutes: 60 if: github.ref_name != 'v11' - run: pnpm run test-branch + run: pnpm run test-main env: PNPM_WORKERS: 3 diff --git a/package.json b/package.json index 147828cbe6..97143eba39 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "lint:ts": "eslint \"**/src/**/*.ts\" \"**/test/**/*.ts\"", "test-main": "pnpm pretest && pnpm lint && pnpm run test-pkgs-main", "remove-temp-dir": "shx rm -rf ../pnpm_tmp", - "test-pkgs-main": "pnpm remove-temp-dir && pnpm run --no-sort --workspace-concurrency=1 -r _test", + "test-pkgs-main": "pnpm remove-temp-dir && pnpm run --no-sort --workspace-concurrency=1 -r --no-bail _test", "test-branch": "pnpm pretest && pnpm lint && git remote set-branches --add origin v11 && git fetch origin v11 && pnpm run test-pkgs-branch", "test-pkgs-branch": "pnpm remove-temp-dir && pnpm --workspace-concurrency=1 --filter=...[origin/v11] run --no-sort _test", "compile-only": "pnpm --config.useNodeVersion=24.6.0 exec ts-node __utils__/scripts/src/typecheck-only.ts && pnpm -F pnpm compile",