Skip to content

Commit

Permalink
chore: set melos analyse exit code (#471)
Browse files Browse the repository at this point in the history
  • Loading branch information
josxha authored Jun 26, 2024
1 parent 80c6f87 commit def7474
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/flutter_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
cache: true
- uses: bluefireteam/melos-action@v3
- name: Lint analysis
run: melos analyze
run: melos analyze --fatal-warnings --fatal-infos --concurrency 10

build-android:
name: "Build Android apk"
Expand Down
2 changes: 1 addition & 1 deletion example/lib/map_ui.dart
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class MapUiBodyState extends State<MapUiBody> {
}

Widget _myLocationRenderModeCycler() {
final MyLocationRenderMode nextType = MyLocationRenderMode.values[
final nextType = MyLocationRenderMode.values[
(_myLocationRenderMode.index + 1) % MyLocationRenderMode.values.length];
return TextButton(
onPressed:
Expand Down

0 comments on commit def7474

Please sign in to comment.