1
1
mirror of https://github.com/primer/css.git synced 2024-12-13 06:38:07 +03:00
css/.github/main.workflow

42 lines
662 B
Plaintext
Raw Normal View History

workflow "lint, test, deploy, publish" {
2019-02-05 01:00:35 +03:00
on = "push"
resolves = [
"lint",
"test",
"deploy",
"npm publish primer",
2019-02-05 01:00:35 +03:00
]
}
action "install" {
uses = "actions/npm@master"
args = "ci"
2019-02-05 01:00:35 +03:00
}
action "lint" {
needs = "install"
uses = "actions/npm@master"
args = "run lint"
}
action "test" {
needs = "install"
uses = "actions/npm@master"
args = "test"
}
action "deploy" {
2019-02-05 01:00:35 +03:00
needs = "install"
uses = "primer/deploy@status-config-redux"
2019-02-06 01:05:48 +03:00
secrets = [
"GITHUB_TOKEN",
2019-02-06 23:47:53 +03:00
"NOW_TOKEN",
2019-02-06 01:05:48 +03:00
]
2019-02-05 02:03:06 +03:00
}
action "npm publish primer" {
2019-02-05 02:03:06 +03:00
needs = ["lint", "test"]
2019-02-06 23:37:48 +03:00
uses = "primer/publish@8435e6f"
2019-02-06 23:47:53 +03:00
secrets = ["GITHUB_TOKEN", "NPM_AUTH_TOKEN"]
2019-02-05 01:00:35 +03:00
}