From 5b149ea77dc30a71408606635a6e6bc6925a52aa Mon Sep 17 00:00:00 2001 From: Ahmed Elsayed Date: Sun, 2 Feb 2025 22:58:18 +0200 Subject: [PATCH] Reduce analyze ci concurrency --- melos.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/melos.yaml b/melos.yaml index 9454262..50f847f 100644 --- a/melos.yaml +++ b/melos.yaml @@ -22,8 +22,10 @@ scripts: description: Run all static analysis checks. analyze: + # We are setting the concurrency to 1 because a higher concurrency can crash + # the analysis server on low performance machines (like GitHub Actions). run: | - melos exec -c 10 -- \ + melos exec -c 1 -- \ flutter analyze --fatal-infos description: Run `flutter analyze` for all packages.