feat: update component CI

This commit is contained in:
Freek van de Ven 2023-11-19 16:14:26 +01:00
parent 56d92d69f6
commit 55e4e50798
3 changed files with 20 additions and 8 deletions

View file

@ -0,0 +1,12 @@
name: Iconica Standard Melos CI Workflow
# Workflow Caller version: 1.0.0
on:
pull_request:
workflow_dispatch:
jobs:
call-global-iconica-workflow:
uses: Iconica-Development/.github/.github/workflows/melos-ci.yml@master
secrets: inherit
permissions: write-all

View file

@ -13,31 +13,31 @@ command:
scripts:
lint:all:
run: melos run analyze && melos run format
run: dart run melos run analyze && dart run melos run format-check
description: Run all static analysis checks.
get:
run: |
melos exec -c 1 -- "flutter pub get"
melos exec --scope="*example*" -c 1 -- "flutter pub get"
dart run melos exec -c 1 -- "flutter pub get"
dart run melos exec --scope="*example*" -c 1 -- "flutter pub get"
upgrade:
run: melos exec -c 1 -- "flutter pub upgrade"
run: dart run melos exec -c 1 -- "flutter pub upgrade"
create:
# run create in the example folder of flutter_timeline_view
run: melos exec --scope="*example*" -c 1 -- "flutter create ."
run: dart run melos exec --scope="*example*" -c 1 -- "flutter create ."
analyze:
run: |
melos exec -c 1 -- \
dart run melos exec -c 1 -- \
flutter analyze --fatal-infos
description: Run `flutter analyze` for all packages.
format:
run: melos exec dart format .
run: dart run melos exec dart format .
description: Run `flutter format` for all packages.
format-check:
run: melos exec dart format . --set-exit-if-changed
run: dart run melos exec dart format . --set-exit-if-changed
description: Run `flutter format` checks for all packages.