From e97b0125b5def7acbe64fa11a9ff31fbaa83f4f2 Mon Sep 17 00:00:00 2001 From: Riqwan Thamir Date: Sun, 5 May 2024 10:08:31 +0200 Subject: [PATCH] chore: add build step to pipeline (#7219) --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 8f321a0eb4..9a586d80d7 100644 --- a/package.json +++ b/package.json @@ -73,12 +73,12 @@ "lint:path": "eslint --ignore-path .eslintignore --ext .js,.ts,.tsx", "prettier": "prettier", "jest": "jest", - "test": "turbo run test --concurrency=50% --no-daemon --no-cache", + "test": "turbo run test --concurrency=50% --no-daemon --no-cache --force", "test:chunk": "./scripts/run-workspace-unit-tests-in-chunks.sh", - "test:integration:packages": "turbo run test:integration --concurrency=50% --no-daemon --no-cache --filter='./packages/*'", - "test:integration:api": "turbo run test:integration:chunk --concurrency=50% --no-daemon --no-cache --filter=integration-tests-api", + "test:integration:packages": "turbo run test:integration --concurrency=50% --no-daemon --no-cache --force --filter='./packages/*'", + "test:integration:api": "turbo run test:integration:chunk --concurrency=50% --no-daemon --no-cache --force --filter=integration-tests-api", "test:integration:plugins": "turbo run test:integration --concurrency=50% --no-daemon --no-cache --filter=integration-tests-plugins", - "test:integration:modules": "turbo run test:integration:chunk --concurrency=50% --no-daemon --no-cache --filter=integration-tests-modules", + "test:integration:modules": "turbo run test:integration:chunk --concurrency=50% --no-daemon --no-cache --force --filter=integration-tests-modules", "test:integration:repositories": "turbo run test:integration --concurrency=50% --no-daemon --no-cache --filter=integration-tests-repositories", "openapi:generate": "yarn ./packages/cli/oas/oas-github-ci run ci --with-full-file", "medusa-oas": "yarn ./packages/cli/oas/medusa-oas-cli run medusa-oas",