mirror of
https://github.com/primer/css.git
synced 2024-11-11 04:00:54 +03:00
42 lines
624 B
HCL
42 lines
624 B
HCL
workflow "lint, test, deploy, publish" {
|
|
on = "push"
|
|
resolves = [
|
|
"lint",
|
|
"test",
|
|
"deploy",
|
|
"publish",
|
|
]
|
|
}
|
|
|
|
action "install" {
|
|
uses = "actions/npm@master"
|
|
args = "install"
|
|
}
|
|
|
|
action "lint" {
|
|
needs = "install"
|
|
uses = "actions/npm@master"
|
|
args = "run lint"
|
|
}
|
|
|
|
action "test" {
|
|
needs = "install"
|
|
uses = "actions/npm@master"
|
|
args = "test"
|
|
}
|
|
|
|
action "deploy" {
|
|
needs = "install"
|
|
uses = "primer/deploy@status-config-redux"
|
|
secrets = [
|
|
"NOW_TOKEN",
|
|
"GITHUB_TOKEN",
|
|
]
|
|
}
|
|
|
|
action "publish" {
|
|
needs = ["lint", "test"]
|
|
uses = "primer/publish@make-it-work"
|
|
args = "--dry-run"
|
|
}
|