Rich text editor for Flutter
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
name: 🧪 Run Tests |
|
|
|
|
|
on: |
|
|
push: |
|
|
branches: [master, dev] |
|
|
pull_request: |
|
|
branches: [master, dev] |
|
|
|
|
|
jobs: |
|
|
tests: |
|
|
name: Check lints and tests |
|
|
runs-on: ubuntu-latest |
|
|
|
|
|
steps: |
|
|
- name: 📦 Checkout repository |
|
|
uses: actions/checkout@v4 |
|
|
|
|
|
- name: 🛠️ Set up Flutter |
|
|
uses: subosito/flutter-action@v2 |
|
|
with: |
|
|
channel: 'stable' |
|
|
cache: true |
|
|
|
|
|
- name: 🔍 Verify Flutter installation |
|
|
run: flutter --version |
|
|
|
|
|
- name: 📥 Install Flutter dependencies |
|
|
run: flutter pub get |
|
|
|
|
|
- name: 🚧 Enable local development environment (use the local packages) |
|
|
run: dart ./scripts/enable_local_dev.dart |
|
|
|
|
|
- name: 📦 Install dart_quill_delta dependencies |
|
|
run: flutter pub get -C dart_quill_delta |
|
|
|
|
|
- name: 📦 Install flutter_quill_extensions dependencies |
|
|
run: flutter pub get -C flutter_quill_extensions |
|
|
|
|
|
- name: 📦 Install flutter_quill_test dependencies |
|
|
run: flutter pub get -C flutter_quill_test |
|
|
|
|
|
- name: 🔍 Run Flutter analysis |
|
|
run: flutter analyze |
|
|
|
|
|
- name: 🧹 Check Dart code formatting |
|
|
run: dart format --set-exit-if-changed . |
|
|
|
|
|
- name: 🔍 Preview Dart proposed changes |
|
|
run: dart fix --dry-run |
|
|
|
|
|
- name: 📦 Check if package is ready for publishing |
|
|
run: flutter pub publish --dry-run |
|
|
|
|
|
- name: 🧪 Run Flutter tests |
|
|
run: flutter test |
|
|
|
|
|
- name: 🔍 Check the translations |
|
|
run: dart ./scripts/ensure_translations_correct.dart
|
|
|
|