forked from FirebaseExtended/flutterfire_desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmelos.yaml
34 lines (28 loc) · 914 Bytes
/
melos.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: flutterfire_dart
packages:
- packages/**
scripts:
lint:all:
run: melos run analyze && melos run format
description: Run all static analysis checks
analyze:
run: |
melos exec -c 1 -- \
dart analyze . --fatal-infos
description: |
Run `dart analyze` in all packages.
- Note: you can also rely on your IDEs Dart Analysis / Issues window.
format: dart format -o write .
test:
description: Run tests in a specific package.
run: melos exec --concurrency=1 -- "flutter test --no-pub --reporter expanded"
select-package:
dir-exists:
- "test/"
firebase:emulator:
run: |
cd .github/workflows/scripts && ./start-firebase-emulator.sh
description: |
Start the Firebase emulator suite. Used by Functions, Firestore, Auth and Storage
integration testing.
- Requires Node.js and NPM installed.