mirror of https://github.com/actions/toolkit
27 lines
429 B
HCL
27 lines
429 B
HCL
workflow "CI" {
|
|
on = "push"
|
|
resolves = ["Format", "Lint", "Test"]
|
|
}
|
|
|
|
action "Dependencies" {
|
|
uses = "actions/npm@v2.0.0"
|
|
args = "install"
|
|
}
|
|
|
|
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"
|
|
}
|
|
|
|
action "Test" {
|
|
needs = "Dependencies"
|
|
uses = "actions/npm@v2.0.0"
|
|
args = "test"
|
|
} |