-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmelos.yaml
48 lines (48 loc) · 1.04 KB
/
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
45
46
47
48
name: dogs_project
repository: https://github.com/DarwinFramework/dogs
packages:
- packages/*
- formats/*
- benchmarks/
- packages/dogs_forms/example/
scripts:
copy-readme:
name: copy-readme
description: 'Copies the root-Readme to the dogs package'
run: cp README.md packages/dogs/README.md
analyze:
name: analyze
description: 'Runs the dart analyzer'
run: dart analyze .
exec:
concurrency: 1
format:
name: format
description: 'Runs the dart formatter'
run: dart format .
exec:
concurrency: 1
smoke:
name: smoke
description: 'Runs smoke tests'
run: cd smoke/ && bash smoke.sh && cd ../
packageFilters:
ignore:
- "*mongo*"
deploy-pages:
exec:
concurrency: 1
run: bash page-deploy.sh
packageFilters:
fileExists:
- page-deploy.sh
test:
description: Run tests in a specific package.
run: dart test test/*
exec:
concurrency: 1
packageFilters:
ignore:
- "*mongo*"
dirExists:
- test