Skip to content

✨ Update git analysis flow to use melos #70

✨ Update git analysis flow to use melos

✨ Update git analysis flow to use melos #70

# 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: Analyze
on:
push:
paths:
- '**.dart'
- '**.yaml'
- '**.yml'
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Flutter
uses: britannio/[email protected]
- name: Install melos
run: dart pub global activate melos
- name: Install dependencies
run: melos run get --no-select
- name: Generate assets and other files
run: melos run generate --no-select
- name: Run Code Anlysis
run: melos run analyse --no-select