feat(keyboard): support for customize onKey events, original PR #2345β¦ #1972
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: π§ͺ Run Tests | |
# TODO: Split the tests into tests.yml and quality checks into checks.yml once start using https://pub.dev/packages/melos | |
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: π¦ 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/translations_check.dart | |
- name: π₯ Install cider | |
run: dart pub global activate cider | |
# TODO: Need a more strict way to validate the format that uses https://keepachangelog.com/en/1.1.0/ | |
- name: π Validate CHANGELOG.md format | |
run: $HOME/.pub-cache/bin/cider list CHANGELOG.md |