-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpubspec.yaml
More file actions
89 lines (82 loc) · 1.99 KB
/
pubspec.yaml
File metadata and controls
89 lines (82 loc) · 1.99 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
name: dogs_project
repository: https://github.com/DarwinFramework/dogs
environment:
sdk: '>=3.9.0 <4.0.0'
flutter: '>=3.7.0'
dependencies:
flutter:
sdk: flutter
dev_dependencies:
melos: ^7.4.1
workspace:
- packages/dogs_core
- packages/dogs_generator
- packages/dogs_flutter
- packages/dogs_built
- packages/dogs_firestore
- formats/dogs_cbor
- formats/dogs_toml
- formats/dogs_yaml
dependency_overrides:
test_api: ^0.7.9
melos:
scripts:
copy-readme:
name: copy-readme
description: 'Copies the root-Readme to the dogs package'
run: cp README.md packages/dogs_core/README.md
analyze:
name: analyze
description: 'Runs the dart analyzer'
run: dart analyze .
exec:
concurrency: 1
packageFilters:
ignore:
- "benchmarks"
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
preview-docs:
description: 'Runs the preview docs script'
run: "bash .github/workflows/scripts/prepare-demo-build.sh && mkdocs serve"
test:
description: Runs all tests in the project.
run: melos test-dart && melos test-flutter
test-dart:
description: Run dart tests in a specific package.
run: dart test test/*
exec:
concurrency: 1
packageFilters:
flutter: false
ignore:
- "*mongo*"
dirExists:
- test
test-flutter:
description: Run flutter tests in a specific package.
run: flutter test test/*
exec:
concurrency: 1
packageFilters:
flutter: true
dirExists:
- test