1
0
Fork 0

Add `lerna bootstrap` to main.workflow

pull/1/head
Jonathan Clem 2019-04-20 11:07:55 -04:00
parent 7343633101
commit 32a1c14007
No known key found for this signature in database
GPG Key ID: 48C5B22E9FD6E80F
2 changed files with 9 additions and 2 deletions

10
.github/main.workflow vendored
View File

@ -8,14 +8,20 @@ action "Dependencies" {
args = "ci"
}
action "Compile" {
action "Bootstrap" {
needs = "Dependencies"
uses = "actions/npm@v2.0.0"
args = "run bootstrap"
}
action "Compile" {
needs = "Bootstrap"
uses = "actions/npm@v2.0.0"
args = "run build"
}
action "Format" {
needs = "Compile"
needs = "Dependencies"
uses = "actions/npm@v2.0.0"
args = "run format"
}

View File

@ -2,6 +2,7 @@
"name": "root",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run tsc",
"format": "prettier --check packages/*/src/**/*.ts",
"test": "jest"