From f2f1be927b9857da0767ac20ab959d5a64ea274c Mon Sep 17 00:00:00 2001 From: "Juan Picado @jotadeveloper" Date: Fri, 15 Feb 2019 15:00:54 +0100 Subject: [PATCH 1/2] 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" +} From 321ee197194301f8d2997b4b1b918d8c90a258cf Mon Sep 17 00:00:00 2001 From: "Juan Picado @jotadeveloper" Date: Fri, 15 Feb 2019 15:22:01 +0100 Subject: [PATCH 2/2] chore: remove publishConfig --- package.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/package.json b/package.json index 754765999..7e082d400 100644 --- a/package.json +++ b/package.json @@ -176,9 +176,6 @@ "npm": ">=3" }, "preferGlobal": true, - "publishConfig": { - "registry": "https://registry.npmjs.org/" - }, "husky": { "hooks": { "pre-commit": "lint-staged && commitlint -e $GIT_PARAMS"