Updated dependencies only #372
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: PR check [reactive_form_generator] | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| - develop | |
| types: | |
| - opened | |
| - reopened | |
| - edited | |
| - synchronize | |
| jobs: | |
| pr-check-reactive_form_generator: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup Flutter | |
| uses: subosito/flutter-action@v2 | |
| with: | |
| flutter-version: 3.38.6 | |
| channel: stable | |
| cache: true | |
| - name: Check out repository code | |
| uses: actions/checkout@v4 | |
| - name: Activate Dart environment | |
| run: | | |
| export PATH="$PATH:${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:/bin" | |
| dart pub global activate melos | |
| - name: melos bootstrap | |
| run: melos bs | |
| - name: analyze | |
| run: flutter analyze --no-fatal-infos | |
| - name: code formatting | |
| run: dart format --set-exit-if-changed lib |