From 166cf108e80e2c06ca843833a33f7c7a6e778324 Mon Sep 17 00:00:00 2001 From: jld3103 Date: Tue, 20 Jun 2023 14:27:59 +0200 Subject: [PATCH] tool: Add melos scripts for CI --- melos.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/melos.yaml b/melos.yaml index 705b369e..50d3d8c6 100644 --- a/melos.yaml +++ b/melos.yaml @@ -17,3 +17,8 @@ packages: ide: intellij: enabled: false + +scripts: + format-check: dart format --output=none --set-exit-if-changed --line-length 120 . + analyze: dart analyze --fatal-infos . + test: melos exec --concurrency=1 --fail-fast --dir-exists=test -- "flutter test"