Skip to content

Commit

Permalink
exclude web-test from build (#518)
Browse files Browse the repository at this point in the history
  • Loading branch information
ermalkaleci authored Nov 6, 2023
1 parent 12dcac6 commit e482feb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit e482feb

Please sign in to comment.