Skip to content

Commit

Permalink
👷 update ci workflows to use melos for formatting and analyzing
Browse files Browse the repository at this point in the history
  • Loading branch information
XanderD99 committed Jun 7, 2024
1 parent bf4c1bf commit bd09794
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/flutter_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ jobs:
- uses: subosito/flutter-action@v2
with:
cache: true
- run: flutter pub get
- name: melos bootstrap
run: melos bootstrap
- name: Lint analysis
run: dart format --set-exit-if-changed .
run: melos format --set-exit-if-changed .

lint:
name: "Static code analysis"
Expand All @@ -32,8 +35,10 @@ jobs:
cd scripts
flutter pub get
cd ..
- name: melos bootstrap
run: melos bootstrap
- name: Lint analysis
run: flutter analyze
run: melos analyze

build-android:
name: "Build Android apk"
Expand Down

0 comments on commit bd09794

Please sign in to comment.