Skip to content

Commit f79f4b5

Browse files
committed
fix logic
1 parent fef3d8e commit f79f4b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/tasks/check.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { maxConcurrentTasks } from '../utils/maxConcurrentTasks';
55

66
// The amount of VCPUs for the check task on CI is 4 (large resource)
77

8-
const parallel = process.env.CI ? `--parallel=${maxConcurrentTasks}` : '';
8+
const parallel = process.env.CI ? '' : `--parallel=${maxConcurrentTasks}`;
99

1010
const linkCommand = `yarn nx run-many -t check ${parallel}`;
1111
const nolinkCommand = `yarn nx run-many -t check -c production ${parallel}`;

0 commit comments

Comments
 (0)