mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-02-24 23:55:46 -05:00
Merge branch '4.x' into fix-1163
This commit is contained in:
commit
70f3f73bc7
3 changed files with 21 additions and 4 deletions
18
.github/main.workflow
vendored
Normal file
18
.github/main.workflow
vendored
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
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@master",
|
||||||
|
needs = ["Docker build health check"]
|
||||||
|
args = "-ddd"
|
||||||
|
}
|
2
.vscode/launch.json
vendored
2
.vscode/launch.json
vendored
|
@ -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"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -176,9 +176,6 @@
|
||||||
"npm": ">=3"
|
"npm": ">=3"
|
||||||
},
|
},
|
||||||
"preferGlobal": true,
|
"preferGlobal": true,
|
||||||
"publishConfig": {
|
|
||||||
"registry": "https://registry.npmjs.org/"
|
|
||||||
},
|
|
||||||
"husky": {
|
"husky": {
|
||||||
"hooks": {
|
"hooks": {
|
||||||
"pre-commit": "lint-staged && commitlint -e $GIT_PARAMS"
|
"pre-commit": "lint-staged && commitlint -e $GIT_PARAMS"
|
||||||
|
|
Loading…
Add table
Reference in a new issue