1
1
mirror of https://github.com/primer/css.git synced 2024-09-21 05:39:15 +03:00
css/.github/main.workflow
2019-02-05 13:55:52 -08:00

42 lines
635 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@b539208"
secrets = ["NOW_TOKEN"]
}
action "publish" {
needs = ["lint", "test"]
uses = "actions/npm@master"
runs = "script/publish"
env = {
STATUS_CONTEXT = "npm publish primer"
}
}