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: | restore-keys: |
pub-${{ runner.os }}- pub-${{ runner.os }}-
- name: Analyze + test (flutter) - name: Pub get
working-directory: front001/mosenioring working-directory: front001/mosenioring
run: | run: flutter pub get
flutter pub get
flutter analyze - name: Analyze (non-blocking for now)
flutter test working-directory: front001/mosenioring
run: flutter analyze || true
- name: Test
working-directory: front001/mosenioring
run: flutter test