We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f59b361 commit 619d64dCopy full SHA for 619d64d
.github/workflows/web-deploy.yml
@@ -25,6 +25,15 @@ jobs:
25
- name: Install dependencies
26
run: flutter pub get
27
28
+ # Generator 빌드
29
+ - name: Run Code Generation
30
+ run: flutter pub run build_runner build --delete-conflicting-outputs
31
+
32
+ # Flutter Test 진행
33
+ # => test에서 실패하면 배포가 되지 않도록 설정
34
+ - name: Run Tests
35
+ run: flutter test
36
37
# 플러터 웹 빌드
38
- name: Build web
39
run: flutter build web --base-href "/${{ github.event.repository.name }}/"
0 commit comments