AppFlowy/.github/workflows/dart_lint.yml

40 lines
1.1 KiB
YAML
Raw Normal View History

2021-11-29 13:49:22 +00:00
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
2022-02-10 01:15:16 +00:00
name: Flutter lint
2021-11-29 13:49:22 +00:00
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
flutter-analyze:
name: flutter analyze
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: subosito/flutter-action@v1
with:
2022-05-25 08:10:47 +00:00
flutter-version: '3.0.0'
2022-02-09 12:56:29 +00:00
channel: "stable"
- name: Deps Flutter
2022-02-24 07:40:48 +00:00
run: flutter packages pub get
working-directory: frontend/app_flowy
2022-02-24 07:40:48 +00:00
- name: Code Generation
2021-11-29 13:49:22 +00:00
working-directory: frontend/app_flowy
2022-02-23 13:32:53 +00:00
run: |
2022-04-28 12:10:12 +00:00
flutter packages pub run easy_localization:generate -f keys -o locale_keys.g.dart -S assets/translations -s en.json
2022-02-23 13:32:53 +00:00
flutter packages pub run build_runner build --delete-conflicting-outputs
2022-02-24 07:40:48 +00:00
- name: Run Flutter Analyzer
2021-11-29 13:49:22 +00:00
working-directory: frontend/app_flowy
run: flutter analyze