1
0
Fork 0
toolkit/.github/main.workflow

27 lines
424 B
Plaintext
Raw Normal View History

2019-04-19 19:23:03 +00:00
workflow "CI" {
on = "push"
2019-04-19 19:35:44 +00:00
resolves = ["Format", "Lint", "Test"]
2019-04-19 19:23:03 +00:00
}
action "Dependencies" {
uses = "actions/npm@v2.0.0"
args = "ci"
2019-04-19 19:35:44 +00:00
}
action "Format" {
needs = "Dependencies"
uses = "actions/npm@v2.0.0"
args = "run format"
}
action "Lint" {
needs = "Dependencies"
uses = "actions/npm@v2.0.0"
args = "run lint"
2019-04-19 19:23:03 +00:00
}
action "Test" {
needs = "Dependencies"
uses = "actions/npm@v2.0.0"
args = "test"
}