mirror of
https://github.com/actions/setup-node.git
synced 2025-04-03 18:13:06 +08:00
27 lines
417 B
HCL
27 lines
417 B
HCL
workflow "CI" {
|
|
on = "push"
|
|
resolves = ["Format", "Test"]
|
|
}
|
|
|
|
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"
|
|
}
|
|
|
|
action "Test" {
|
|
needs = "Build"
|
|
uses = "actions/npm@v2.0.0"
|
|
args = "test"
|
|
} |