Update ci.yaml

add flutter analyze actions
This commit is contained in:
AppFlowy.IO 2021-11-27 09:32:10 +08:00 committed by GitHub
parent f59cf4eb71
commit d010211028
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,6 +5,22 @@ on:
pull_request:
branches: [main]
jobs:
lint:
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
sdk-tests:
runs-on: ubuntu-latest
steps: