mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-23 22:27:34 -05:00
18 lines
400 B
HCL
18 lines
400 B
HCL
workflow "New workflow" {
|
|
on = "push"
|
|
resolves = [
|
|
"Docker build health check",
|
|
"Test Publish Verdaccio",
|
|
]
|
|
}
|
|
|
|
action "Docker build health check" {
|
|
uses = "actions/docker/cli@8cdf801b322af5f369e00d85e9cf3a7122f49108"
|
|
args = "build ."
|
|
}
|
|
|
|
action "Test Publish Verdaccio" {
|
|
uses = "verdaccio/github-actions/publish@v0.1.0"
|
|
needs = ["Docker build health check"]
|
|
args = "-ddd"
|
|
}
|