0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-06 22:40:26 -05:00
verdaccio/.github/main.workflow
Juan Picado @jotadeveloper 8ce3f87dc6
Update main.workflow
2019-02-15 17:18:17 +01:00

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"
}