AppFlowy/.github/workflows/frontend_dart.yml
2022-02-09 19:17:15 +08:00

36 lines
769 B
YAML

# 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.
name: Frontend_Dart
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:
channel: "dev"
- name: flutter pub get
working-directory: frontend/app_flowy
run: flutter pub get
- name: flutter analyze
working-directory: frontend/app_flowy
run: flutter analyze