From d010211028ceff536cd080c63800a54c094b399b Mon Sep 17 00:00:00 2001 From: "AppFlowy.IO" <86001920+appflowy@users.noreply.github.com> Date: Sat, 27 Nov 2021 09:32:10 +0800 Subject: [PATCH] Update ci.yaml add flutter analyze actions --- .github/workflows/ci.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b0b9ca0d86..b687d70647 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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: