1
0
Fork 0
mirror of https://github.com/actions/setup-node synced 2025-04-15 13:25:52 +00:00
setup-node/.github/main.workflow
2019-05-31 12:22:46 -04:00

21 lines
No EOL
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"
}