Skip to content

Commit

Permalink
ci: Split test-e2e command (#22640)
Browse files Browse the repository at this point in the history
  • Loading branch information
zharinov committed Jun 8, 2023
1 parent f93f2f0 commit 6465424
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion package.json
Expand Up @@ -45,7 +45,10 @@
"start": "ts-node lib/renovate.ts",
"test": "run-s lint test-schema jest",
"test-dirty": "git diff --exit-code",
"test-e2e": "yarn pack && cd test/e2e && yarn install --no-lockfile --ignore-optional --prod && yarn test",
"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-schema": "run-s create-json-schema",
"tsc": "tsc",
"type-check": "run-s generate:* \"tsc --noEmit {@}\" --",
Expand Down

0 comments on commit 6465424

Please sign in to comment.