mirror of
https://github.com/renovatebot/renovate.git
synced 2025-03-15 00:32:54 +00:00
test(e2e): use npm (#23688)
This commit is contained in:
parent
04c3526ec1
commit
52e229d3ab
3 changed files with 5 additions and 5 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -464,7 +464,7 @@ jobs:
|
|||
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
|
||||
with:
|
||||
name: renovate-package
|
||||
path: renovate-v0.0.0-semantic-release.tgz
|
||||
path: renovate-0.0.0-semantic-release.tgz
|
||||
|
||||
build-docs:
|
||||
needs: [lint-docs]
|
||||
|
|
|
@ -47,9 +47,9 @@
|
|||
"test": "run-s lint test-schema jest",
|
||||
"test-dirty": "git diff --exit-code",
|
||||
"test-e2e": "run-s test-e2e:*",
|
||||
"test-e2e:pack": "yarn pack",
|
||||
"test-e2e:install": "yarn --cwd test/e2e install --no-lockfile --ignore-optional --prod",
|
||||
"test-e2e:run": "yarn --cwd test/e2e test",
|
||||
"test-e2e:pack": "npm pack",
|
||||
"test-e2e:install": "cd test/e2e && npm install --no-package-lock --prod",
|
||||
"test-e2e:run": "cd test/e2e && npm test",
|
||||
"test-schema": "run-s create-json-schema",
|
||||
"schedule-test-shards": "SCHEDULE_TEST_SHARDS=true ts-node jest.config.ts",
|
||||
"tsc": "tsc",
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"test": "renovate --version && renovate-config-validator"
|
||||
},
|
||||
"dependencies": {
|
||||
"renovate": "file:../../renovate-v0.0.0-semantic-release.tgz"
|
||||
"renovate": "file:../../renovate-0.0.0-semantic-release.tgz"
|
||||
},
|
||||
"renovate-config": {
|
||||
"default": {
|
||||
|
|
Loading…
Reference in a new issue