diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 78a255b1..8bd1fecf 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -41,8 +41,7 @@ jobs: run: | yarn --immutable yarn check - yarn build-wasm - yarn build + yarn build:web-test - name: Generate Docs run: | yarn docs:build diff --git a/package.json b/package.json index 76a2eb0d..8632e1cf 100644 --- a/package.json +++ b/package.json @@ -14,8 +14,9 @@ "fix": "eslint . --ext .js,.ts --fix && prettier -w .", "prepare": "husky install", "clean": "yarn workspaces foreach -pvit run clean", - "build": "yarn workspaces foreach -pvit run build", + "build": "yarn workspaces foreach -pvit --exclude @acala-network/web-test run build", "build-wasm": "yarn workspace @acala-network/chopsticks-executor build", + "build:web-test": "yarn build && yarn workspace @acala-network/web-test run build", "check": "cd executor && cargo check --locked", "test": "vitest run", "test:watch": "vitest",