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 14:05:48 -08:00

45 lines
672 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",
"GITHUB_TOKEN",
]
}
action "publish" {
needs = ["lint", "test"]
uses = "actions/npm@master"
runs = "script/publish"
env = {
PUBLISH_STATUS_CONTEXT = "npm publish primer"
}
}