Skip to content

Commit

Permalink
chore: fix missing code gen on workflows ds-6
Browse files Browse the repository at this point in the history
  • Loading branch information
KeidsID committed Jan 7, 2025
1 parent 8704563 commit 7aa9ab6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
cache-key: ${{needs.dependencies.outputs.fl-cache-key}}
pub-cache-key: ${{needs.dependencies.outputs.fl-pub-cache-key}}

- name: ⚙️ Setup environment
- name: 🏗️ Build code utils
run: |
dart run build_runner build -d
flutter gen-l10n
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
cache-key: ${{needs.dependencies.outputs.fl-cache-key}}
pub-cache-key: ${{needs.dependencies.outputs.fl-pub-cache-key}}

- name: ⚙️ Setup environment
- name: 🏗️ Build code utils
run: |
dart run build_runner build -d
flutter gen-l10n
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/ci-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,11 @@ jobs:
cache-key: ${{needs.dependencies.outputs.fl-cache-key}}
pub-cache-key: ${{needs.dependencies.outputs.fl-pub-cache-key}}

- name: 🏗️ Build code utils
run: |
dart run build_runner build -d
flutter gen-l10n
- name: ⚙️ Setup NodeJS
uses: actions/setup-node@v3
with:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,10 @@ jobs:
cache-key: ${{needs.dependencies.outputs.fl-cache-key}}
pub-cache-key: ${{needs.dependencies.outputs.fl-pub-cache-key}}

- name: 🏗️ Build code utils
run: |
dart run build_runner build -d
flutter gen-l10n
- name: 🔍 Code Linting
run: flutter analyze lib

0 comments on commit 7aa9ab6

Please sign in to comment.