Skip to content

fix(i18n): add missing diffTable and onboarding keys to all languages #30

fix(i18n): add missing diffTable and onboarding keys to all languages

fix(i18n): add missing diffTable and onboarding keys to all languages #30

Workflow file for this run

name: Flutter CI
on:
push:
branches: [main, master, develop]
pull_request:
branches: [main, master, develop]
permissions:
contents: read
pull-requests: write
checks: write
jobs:
# Code quality checks
analyze:
name: Analyze & Format
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.27.0'
channel: 'stable'
cache: true
- name: Get dependencies
run: flutter pub get
- name: Generate code
run: dart run build_runner build --delete-conflicting-outputs
- name: Check formatting
run: dart format --set-exit-if-changed .
- name: Run analyzer
run: flutter analyze --no-pub --no-fatal-warnings --no-fatal-infos
# Unit and widget tests
test:
name: Run Tests
runs-on: ubuntu-latest
needs: analyze
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.27.0'
channel: 'stable'
cache: true
- name: Get dependencies
run: flutter pub get
- name: Generate code
run: dart run build_runner build --delete-conflicting-outputs
- name: Run tests
run: flutter test