mirror of
https://github.com/primer/css.git
synced 2024-12-01 20:53:06 +03:00
29 lines
557 B
HCL
29 lines
557 B
HCL
workflow "lint, test, publish" {
|
|
on = "push"
|
|
resolves = ["lint", "test", "publish"]
|
|
}
|
|
|
|
action "install" {
|
|
uses = "actions/npm@v2.0.0"
|
|
args = ["install", "--unsafe-perm"]
|
|
}
|
|
|
|
action "lint" {
|
|
needs = "install"
|
|
uses = "actions/npm@v2.0.0"
|
|
args = ["--unsafe-perm", "run", "lint"]
|
|
}
|
|
|
|
action "test" {
|
|
needs = "install"
|
|
uses = "actions/npm@v2.0.0"
|
|
args = ["--unsafe-perm", "test"]
|
|
}
|
|
|
|
action "publish" {
|
|
needs = ["lint", "test"]
|
|
uses = "primer/publish@v1.0.0"
|
|
args = ["--", "--unsafe-perm"]
|
|
secrets = ["GITHUB_TOKEN", "NPM_AUTH_TOKEN"]
|
|
}
|