chore: updating dependencies #9
Workflow file for this run
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: mini_hub_client | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - .github/workflows/mini_hub_client.yaml | |
| - packages/mini_hub_client/** | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - .github/workflows/mini_hub_client.yaml | |
| - packages/mini_hub_client/** | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/[email protected] | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: 'stable' | |
| cache: true | |
| - uses: bluefireteam/melos-action@main | |
| - name: Install Dependencies | |
| run: melos bootstrap | |
| - name: Format | |
| run: melos exec --scope mini_hub_client dart format --set-exit-if-changed lib | |
| - name: Analyze | |
| run: melos exec --scope mini_hub_client dart analyze --fatal-infos --fatal-warnings . | |
| #- name: Run Tests | |
| # run: melos exec --scope mini_hub_client flutter test --coverage | |
| #- name: Check Code Coverage | |
| # uses: VeryGoodOpenSource/very_good_coverage@v1 | |
| # with: | |
| # path: packages/mini_hub_client/coverage/lcov.info | |
| # min_coverage: 0 |