Skip to content

Commit

Permalink
test(e2e): use npm (#23688)
Browse files Browse the repository at this point in the history
  • Loading branch information
viceice committed Aug 3, 2023
1 parent 04c3526 commit 52e229d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Expand Up @@ -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]
Expand Down
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/package.json
Expand Up @@ -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": {
Expand Down

0 comments on commit 52e229d

Please sign in to comment.