74 lines
2.4 KiB
YAML
74 lines
2.4 KiB
YAML
name: stream_chat_flutter
|
|
|
|
versioning:
|
|
mode: independent
|
|
|
|
packages:
|
|
- packages/**
|
|
|
|
scripts:
|
|
lint:all:
|
|
run: melos run analyze && melos run format
|
|
description: Run all static analysis checks
|
|
|
|
analyze:
|
|
run: |
|
|
melos exec -c 4 --ignore="*example*" -- \
|
|
dart analyze --fatal-infos .
|
|
description: |
|
|
Run `dart analyze` in all packages.
|
|
- Note: you can also rely on your IDEs Dart Analysis / Issues window.
|
|
|
|
format:
|
|
run: flutter format --set-exit-if-changed .
|
|
description: |
|
|
Run `flutter format --set-exit-if-changed .` in all packages.
|
|
|
|
lint:pub:
|
|
run: |
|
|
melos exec -c 4 --no-private --ignore="*example*" -- \
|
|
pub publish --dry-run
|
|
description: |
|
|
Run `pub publish --dry-run` in all packages.
|
|
- Note: you can also rely on your IDEs Dart Analysis / Issues window.
|
|
|
|
generate:all:
|
|
run: melos run generate:dart && melos run generate:flutter
|
|
description: Build all generated files for Dart & Flutter packages in this project.
|
|
|
|
generate:dart:
|
|
run: melos exec -c 1 --depends-on="build_runner" --no-flutter -- "dart run build_runner build --delete-conflicting-outputs"
|
|
description: Build all generated files for Dart packages in this project.
|
|
|
|
generate:flutter:
|
|
run: melos exec -c 1 --depends-on="build_runner" --flutter -- "flutter pub run build_runner build --delete-conflicting-outputs"
|
|
description: Build all generated files for Flutter packages in this project.
|
|
|
|
test:all:
|
|
run: melos run test:dart --no-select && melos run test:flutter --no-select
|
|
description: Run all Dart & Flutter tests in this project.
|
|
|
|
test:dart:
|
|
run: melos exec -c 1 --fail-fast -- "flutter test --coverage"
|
|
description: Run Dart tests for a specific package in this project.
|
|
select-package:
|
|
flutter: false
|
|
dir-exists: test
|
|
|
|
test:flutter:
|
|
run: melos exec -c 3 --fail-fast -- "flutter test --coverage"
|
|
description: Run Flutter tests for a specific package in this project.
|
|
select-package:
|
|
flutter: true
|
|
dir-exists: test
|
|
|
|
coverage:ignore-file:
|
|
run: |
|
|
melos exec -c 4 --fail-fast -- "\$MELOS_ROOT_PATH/.github/workflows/scripts/remove-from-coverage.sh"
|
|
description: Removes all the ignored files from the coverage report.
|
|
select-package:
|
|
dir-exists: coverage
|
|
|
|
environment:
|
|
sdk: '>=2.12.0 <3.0.0'
|
|
flutter: '>=1.22.4 <2.0.0' |