Add container based dev flow (#4)

* add container based dev flow

Signed-off-by: Tonis Tiigi <[email protected]>

* Fix yarn test for container based dev flow

Signed-off-by: CrazyMax <[email protected]>

* Update contributing guidelines and test workflow

Signed-off-by: CrazyMax <[email protected]>

Co-authored-by: CrazyMax <[email protected]>
This commit is contained in:
Tõnis Tiigi
2020-08-26 23:48:38 +00:00
committed by GitHub
co-authored by CrazyMax
parent 80f3f35da3
commit 41ae3d0e5f
7 changed files with 149 additions and 6 deletions
+42
View File
@@ -0,0 +1,42 @@
group "default" {
targets = ["build"]
}
group "pre-checkin" {
targets = ["update-yarn", "format", "build"]
}
group "validate" {
targets = ["validate-format", "validate-build", "validate-yarn"]
}
target "update-yarn" {
target = "update-yarn"
output = ["."]
}
target "build" {
target = "dist"
output = ["."]
}
target "test" {
target = "test"
}
target "format" {
target = "format"
output = ["."]
}
target "validate-format" {
target = "validate-format"
}
target "validate-build" {
target = "validate-build"
}
target "validate-yarn" {
target = "validate-yarn"
}