Skip to content

Align notifications and confirmation dialogs with active theme #20

Align notifications and confirmation dialogs with active theme

Align notifications and confirmation dialogs with active theme #20

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
jobs:
foundation-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate foundation files
run: ./scripts/validate-foundation.sh
migrations-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate SQL migrations on isolated Postgres
run: ./scripts/validate-migrations-postgres.sh
mobile-checks:
runs-on: ubuntu-latest
defaults:
run:
working-directory: apps/mobile
steps:
- uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
- name: Install dependencies
run: flutter pub get
- name: Analyze
run: flutter analyze
- name: Run tests
run: flutter test