mirror of
https://github.com/kuhyx/testsAndMisc-archive.git
synced 2026-07-04 13:43:02 +02:00
45 lines
746 B
YAML
45 lines
746 B
YAML
|
|
name: horatio
|
||
|
|
description: Monorepo for Horatio — the actor's script memorization companion.
|
||
|
|
|
||
|
|
packages:
|
||
|
|
- horatio_core
|
||
|
|
- horatio_app
|
||
|
|
|
||
|
|
command:
|
||
|
|
bootstrap:
|
||
|
|
usePubspecOverrides: true
|
||
|
|
|
||
|
|
scripts:
|
||
|
|
analyze:
|
||
|
|
run: dart analyze --fatal-infos
|
||
|
|
exec:
|
||
|
|
concurrency: 1
|
||
|
|
packageFilters:
|
||
|
|
scope: "*"
|
||
|
|
|
||
|
|
format:
|
||
|
|
run: dart format --set-exit-if-changed .
|
||
|
|
exec:
|
||
|
|
concurrency: 1
|
||
|
|
|
||
|
|
test:
|
||
|
|
run: dart test
|
||
|
|
exec:
|
||
|
|
concurrency: 1
|
||
|
|
packageFilters:
|
||
|
|
scope: "*"
|
||
|
|
|
||
|
|
test:coverage:
|
||
|
|
run: dart test --coverage=coverage
|
||
|
|
exec:
|
||
|
|
concurrency: 1
|
||
|
|
packageFilters:
|
||
|
|
scope: "*"
|
||
|
|
|
||
|
|
check:
|
||
|
|
description: Run all checks (format, analyze, test)
|
||
|
|
steps:
|
||
|
|
- format
|
||
|
|
- analyze
|
||
|
|
- test
|