-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.yml
More file actions
23 lines (23 loc) · 910 Bytes
/
project.yml
File metadata and controls
23 lines (23 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
# An example of a `common project commands` script that can be referenced from
# a repository to share commonly used commands within a repo with other contributors
example-project:
message: "Run, build or test example project?"
directory: "~/projects/example"
options:
run:
message: "Running example project..."
command: "yarn start"
build:
directory: "~/projects/example/src"
message: "Building example project..."
command: "yarn install"
test:
message: "Run unit or integration tests?"
options:
unit:
message: "Running example project unit tests"
command: "yarn test:unit"
integration:
message: "Running example project integration tests"
command: "yarn test:integration"