Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: ds-775 integration checks moved to ci run only #448

Merged
merged 1 commit into from
Sep 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
"api:stage": "sh ./scripts/apiStage.sh -p $MOCK_PORT -t stage",
"api:stage-clean": "sh ./scripts/apiStage.sh -t clean",
"api:stage-stop": "sh ./scripts/apiStage.sh -t stopApi",
"build": "run-s -l build:pre build:js build:post test:integration",
"build:brand": "run-s -l build:pre-brand build:js build:post test:integration",
"build": "run-s -l build:pre build:js build:post",
"build:brand": "run-s -l build:pre-brand build:js build:post",
"build:js": "export NODE_ENV=production; weldable -l ts -x ./config/webpack.prod.js",
"build:post": "bash ./scripts/post.sh",
"build:pre": "bash ./scripts/pre.sh",
Expand All @@ -33,7 +33,7 @@
"start:open": "xdg-open $PROTOCOL://$HOST:$PORT/ || open $PROTOCOL://$HOST:$PORT/",
"start:stage": "export PROTOCOL=http; export HOST=127.0.0.1; export PORT=${PORT:-3000}; export MOCK_PORT=${MOCK_PORT:-8000}; run-p -l api:stage start:js start:open",
"test": "export NODE_ENV=test; run-s test:ci-lint test:ci-build test:ci-coverage",
"test:ci-build": "run-s build",
"test:ci-build": "run-s -l build:pre build:js build:post test:integration",
"test:ci-coverage": "export CI=true; jest ./src --coverage",
"test:ci-lint": "run-s test:spell* test:types test:lint",
"test:clearCache": "jest --clearCache",
Expand Down
Loading