mirror of
https://github.com/AppFlowy-IO/AppFlowy
synced 2026-05-24 09:38:25 +00:00
Update ci.yaml
add flutter analyze actions
This commit is contained in:
parent
f59cf4eb71
commit
d010211028
1 changed files with 16 additions and 0 deletions
16
.github/workflows/ci.yaml
vendored
16
.github/workflows/ci.yaml
vendored
|
|
@ -5,6 +5,22 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [main]
|
branches: [main]
|
||||||
jobs:
|
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:
|
sdk-tests:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue