0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-23 22:27:34 -05:00
verdaccio/.github/main.workflow
Juan Picado @jotadeveloper d336505b69
Update main.workflow
2019-02-15 17:17:41 +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"
}