mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-30 22:34:10 -05:00
Update main.workflow
This commit is contained in:
parent
b906d0aa99
commit
f2f1be927b
1 changed files with 10 additions and 1 deletions
11
.github/main.workflow
vendored
11
.github/main.workflow
vendored
|
@ -1,9 +1,18 @@
|
|||
workflow "New workflow" {
|
||||
on = "push"
|
||||
resolves = ["Docker build health check"]
|
||||
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@master",
|
||||
needs = ["Docker build health check"]
|
||||
args = "-ddd"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue