Skip to content

Commit eb03698

Browse files
fix: set devtools build to --parallel=1 for stability
Reduce parallel build workers in devtools workflow to prevent race conditions and improve build reliability. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 51109c6 commit eb03698

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/devtools.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ jobs:
5353
run: npx cypress install
5454

5555
- name: Warm Nx Cache
56-
run: npx nx run-many --targets=build --projects=tag:type:pkg --parallel=4 --skip-nx-cache
56+
run: npx nx run-many --targets=build --projects=tag:type:pkg --parallel=1 --skip-nx-cache
5757

5858
- name: Run Affected Build
59-
run: npx nx run-many --targets=build --projects=tag:type:pkg --parallel=4 --skip-nx-cache
59+
run: npx nx run-many --targets=build --projects=tag:type:pkg --parallel=1 --skip-nx-cache
6060

6161
- name: Configuration xvfb
6262
shell: bash

0 commit comments

Comments
 (0)