1
0
Fork 0
mirror of https://github.com/actions/setup-node synced 2025-04-21 08:15:50 +00:00
setup-node/.github/main.workflow
2019-05-31 12:17:28 -04:00

21 lines
No EOL
335 B
HCL

workflow "CI" {
on = "push"
resolves = ["Format", "Build"]
}
action "Dependencies" {
uses = "actions/npm@v2.0.0"
args = "ci"
}
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"
}