Refactor CI workflow: split Flutter tasks into separate steps
All checks were successful
ci / backend (push) Successful in 2m0s
ci / flutter (push) Successful in 1m11s

This commit is contained in:
Oskar Kapala 2026-01-16 15:21:22 +01:00
parent b7ef0530d4
commit c2a9ddc640

View file

@ -45,9 +45,15 @@ jobs:
restore-keys: |
pub-${{ runner.os }}-
- name: Analyze + test (flutter)
- name: Pub get
working-directory: front001/mosenioring
run: |
flutter pub get
flutter analyze
flutter test
run: flutter pub get
- name: Analyze (non-blocking for now)
working-directory: front001/mosenioring
run: flutter analyze || true
- name: Test
working-directory: front001/mosenioring
run: flutter test