chore(deps): bump dio from 5.9.2 to 5.10.0 #107
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: [ "**" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| flutter-version: "3.44.1" | |
| channel: "stable" | |
| - run: flutter --version | |
| - name: Install dependencies | |
| run: | | |
| flutter pub global activate melos | |
| flutter pub get | |
| melos bootstrap | |
| - name: Remove lib/l10n directory | |
| run: melos exec --scope="*flutter*" -- rm -rf lib/l10n/*.dart || true | |
| - name: Verify formatting | |
| run: melos exec -- dart format --output=none --set-exit-if-changed . | |
| - name: Regenerate the localization files | |
| run: melos exec --scope="*flutter*" -- flutter gen-l10n || true | |
| - name: Analyze Dart packages | |
| run: melos exec --no-flutter -- dart analyze --fatal-infos | |
| - name: Analyze Flutter packages | |
| run: melos exec --flutter -- flutter analyze --fatal-infos |