Skip to content

fix: 변경 사항으로 인한 alert_use_case.dart 에러 수정 #43

fix: 변경 사항으로 인한 alert_use_case.dart 에러 수정

fix: 변경 사항으로 인한 alert_use_case.dart 에러 수정 #43

Workflow file for this run

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