0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05:00

Merge branch '4.x' into feat-new-detail-page

This commit is contained in:
Juan Picado @jotadeveloper 2019-02-15 15:58:26 +01:00 committed by GitHub
commit c04f4ad793
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 4 deletions

11
.github/main.workflow vendored
View file

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

View file

@ -177,9 +177,6 @@
"npm": ">=3"
},
"preferGlobal": true,
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && commitlint -e $GIT_PARAMS"