refactor(ci): Remove redundant generate step from test:ci script

Removes the 'npm run generate' command from the 'test:ci' script in the root package.json.

This step was redundant because the 'npm run build' command, which is run first, already includes the 'generate' step.
This commit is contained in:
mkorwel
2025-10-21 22:59:56 -07:00
parent 4faa59fb72
commit 6a6c344f49
+1 -1
View File
@@ -34,7 +34,7 @@
"build:sandbox": "node scripts/build_sandbox.js",
"bundle": "npm run generate && node esbuild.config.js && node scripts/copy_bundle_assets.js",
"test": "npm run test --workspaces --if-present --parallel",
"test:ci": "npm run build && npm run generate && npm run test:ci --workspaces --if-present --parallel && npm run test:scripts",
"test:ci": "npm run build && npm run test:ci --workspaces --if-present --parallel && npm run test:scripts",
"test:scripts": "vitest run --config ./scripts/tests/vitest.config.ts",
"test:e2e": "cross-env VERBOSE=true KEEP_OUTPUT=true npm run test:integration:sandbox:none",
"test:integration:all": "npm run test:integration:sandbox:none && npm run test:integration:sandbox:docker && npm run test:integration:sandbox:podman",