fix: 변경 사항으로 인한 alert_use_case.dart 에러 수정 #43
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: Flutter Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Flutter SDK 캐시 | |
| uses: actions/cache@v3 | |
| with: | |
| path: /opt/hostedtoolcache/flutter | |
| key: ${{ runner.os }}-flutter-${{ vars.FLUTTER_VERSION }} | |
| - name: Flutter 설치 | |
| uses: subosito/flutter-action@v2 | |
| with: | |
| channel: stable | |
| flutter-version: ${{ vars.FLUTTER_VERSION }} | |
| - name: 종속성 설치 | |
| run: flutter pub get | |
| - name: Dart 포맷 검사 | |
| run: dart format --set-exit-if-changed . | |
| - name: Dart 전처리 빌드 | |
| working-directory: packages/widgetbook | |
| run: dart run build_runner build --delete-conflicting-outputs | |
| - name: 애널라이저 검사 | |
| run: flutter analyze --fatal-warnings |