mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-10 22:16:28 +00:00
test(e2e): use yarn to pack (#16291)
This commit is contained in:
parent
787c98cdbe
commit
fa18c74f94
3 changed files with 3 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -10,6 +10,7 @@
|
|||
/package-lock.json
|
||||
*.pyc
|
||||
renovate-0.0.0-semantic-release.tgz
|
||||
renovate-v0.0.0-semantic-release.tgz
|
||||
/test/e2e/node_modules
|
||||
.eslintcache
|
||||
junit.xml
|
||||
|
|
|
@ -47,7 +47,7 @@
|
|||
"start": "node -r ts-node/register/transpile-only -- lib/renovate.ts",
|
||||
"test": "run-s lint test-schema type-check strict-check jest",
|
||||
"test-dirty": "git diff --exit-code",
|
||||
"test-e2e": "npm pack && cd test/e2e && yarn install --no-lockfile --ignore-optional --prod && yarn test",
|
||||
"test-e2e": "yarn pack && cd test/e2e && yarn install --no-lockfile --ignore-optional --prod && yarn test",
|
||||
"test-schema": "run-s create-json-schema",
|
||||
"tsc": "tsc",
|
||||
"type-check": "run-s generate:* \"tsc --noEmit {@}\" --",
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"test": "renovate --version && renovate-config-validator"
|
||||
},
|
||||
"dependencies": {
|
||||
"renovate": "file:../../renovate-0.0.0-semantic-release.tgz"
|
||||
"renovate": "file:../../renovate-v0.0.0-semantic-release.tgz"
|
||||
},
|
||||
"renovate-config": {
|
||||
"default": {
|
||||
|
|
Loading…
Reference in a new issue