From f2f1be927b9857da0767ac20ab959d5a64ea274c Mon Sep 17 00:00:00 2001 From: "Juan Picado @jotadeveloper" Date: Fri, 15 Feb 2019 15:00:54 +0100 Subject: [PATCH] Update main.workflow --- .github/main.workflow | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/main.workflow b/.github/main.workflow index 42de57c5c..efcea9031 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -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" +}