Skip to content

Commit 2667ae6

Browse files
authored
Merge pull request #342 from AhmedLSayed9/enhance/reduce_analyze_ci_concurrency
Reduce analyze ci concurrency
2 parents 1302111 + 5b149ea commit 2667ae6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

melos.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@ scripts:
2222
description: Run all static analysis checks.
2323

2424
analyze:
25+
# We are setting the concurrency to 1 because a higher concurrency can crash
26+
# the analysis server on low performance machines (like GitHub Actions).
2527
run: |
26-
melos exec -c 10 -- \
28+
melos exec -c 1 -- \
2729
flutter analyze --fatal-infos
2830
description: Run `flutter analyze` for all packages.
2931

0 commit comments

Comments
 (0)