1
0
mirror of https://github.com/actions/setup-node.git synced 2025-04-12 08:16:45 +08:00
2019-05-31 12:22:46 -04:00

21 lines
340 B
HCL

workflow "CI" {
on = "push"
resolves = ["Format", "Build"]
}
action "Dependencies" {
uses = "actions/npm@v2.0.0"
args = "install"
}
action "Build" {
needs = "Dependencies"
uses = "actions/npm@v2.0.0"
args = "run build"
}
action "Format" {
needs = "Dependencies"
uses = "actions/npm@v2.0.0"
args = "run format-check"
}