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-14 09:16:43 +01:00 committed by GitHub
commit ce63b2d7c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 1 deletions

9
.github/main.workflow vendored Normal file
View file

@ -0,0 +1,9 @@
workflow "New workflow" {
on = "push"
resolves = ["Docker build health check"]
}
action "Docker build health check" {
uses = "actions/docker/cli@8cdf801b322af5f369e00d85e9cf3a7122f49108"
args = "build ."
}

2
.vscode/launch.json vendored
View file

@ -10,6 +10,7 @@
"name": "CLI Babel Registry", "name": "CLI Babel Registry",
"stopOnEntry": false, "stopOnEntry": false,
"program": "${workspaceFolder}/debug/bootstrap.js", "program": "${workspaceFolder}/debug/bootstrap.js",
"args": ["-l", "0.0.0.0:4873"],
"env": { "env": {
"BABEL_ENV": "registry" "BABEL_ENV": "registry"
}, },
@ -71,6 +72,7 @@
"name": "Verdaccio Compiled", "name": "Verdaccio Compiled",
"preLaunchTask": "npm: code:build", "preLaunchTask": "npm: code:build",
"program": "${workspaceRoot}/bin/verdaccio", "program": "${workspaceRoot}/bin/verdaccio",
"args": ["-l", "0.0.0.0:4873"],
"console": "integratedTerminal" "console": "integratedTerminal"
} }
] ]