Skip to content

Commit

Permalink
feat(workflow): add main.workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
willsoto authored Feb 4, 2019
1 parent a7ec179 commit 9fbaa37
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/main.workflow
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
workflow "CI" {
on = "push"
resolves = ["Unit Tests", "Build", "Typings"]
}

action "Install" {
uses = "actions/npm@3c8332795d5443adc712d30fa147db61fd520b5a"
runs = "yarn"
args = "install"
}

action "Unit Tests" {
uses = "actions/npm@3c8332795d5443adc712d30fa147db61fd520b5a"
needs = ["Install"]
runs = "yarn"
args = "test"
}

action "Build" {
uses = "actions/npm@3c8332795d5443adc712d30fa147db61fd520b5a"
needs = ["Install"]
runs = "yarn"
args = "build"
}

action "Typings" {
uses = "actions/npm@3c8332795d5443adc712d30fa147db61fd520b5a"
needs = ["Install"]
runs = "yarn"
args = "typings"
}

0 comments on commit 9fbaa37

Please sign in to comment.