ci: Don't run analyze concurrently (#2704)

Apparently if you run analyze concurrently with melos it might not report a non-zero code even though it finds errors.
This commit is contained in:
Lukas Klingsbo
2023-09-02 22:22:25 +02:00
committed by GitHub
parent 10fb65f66c
commit c01ebea55d

View File

@ -21,7 +21,7 @@ scripts:
analyze:
run: |
melos exec -c 10 -- \
melos exec -c 1 -- \
flutter analyze --fatal-infos
description: Run `flutter analyze` for all packages.