diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7d48314..f46dfa4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,9 +37,9 @@ jobs: # Dart/Flutter - name: Check Dart format - run: melos run check-format --no-select + run: melos format --set-exit-if-changed - name: Dart code analysis - run: melos run analyze --no-select + run: melos analyze - name: Run Dart tests run: melos run test diff --git a/melos.yaml b/melos.yaml index 02fa696..1f13ad5 100644 --- a/melos.yaml +++ b/melos.yaml @@ -10,18 +10,6 @@ command: preCommit: bash scripts/version.sh scripts: - analyze: - exec: flutter analyze . - description: Analyze a specific package in this project. - - check-format: - exec: dart format --set-exit-if-changed . - description: Check the format of a specific package in this project. - - format: - exec: dart format . - description: Format a specific package in this project. - build: run: melos run build:apple && melos run build:android && melos run build:other description: Build all native libraries for the project.