-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmelos.yaml
44 lines (36 loc) · 870 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
35
36
37
38
39
40
41
42
43
44
name: fluorflow
repository: https://github.com/smartive/fluorflow
packages:
- packages/fluorflow
- packages/fluorflow_generator
scripts:
build_runner:
description: Run build_runner
exec: dart run build_runner build --delete-conflicting-outputs
packageFilters:
dependsOn:
- build_runner
lint:
description: Run static analysis and code style checks
run: dart analyze && dart format --fix --set-exit-if-changed .
exec:
failFast: true
test:
run: melos run test:dart && melos run test:flutter
test:dart:
description: Run dart tests
run: dart test
packageFilters:
flutter: false
exec:
failFast: true
test:flutter:
description: Run flutter tests
run: flutter test
packageFilters:
flutter: true
exec:
failFast: true
ide:
intellij:
enabled: false