Skip to content

Commit 0e5ebf1

Browse files
committed
chore: exclude IDE packages from regular build
1 parent 4c8b86f commit 0e5ebf1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
gradle-home-cache-cleanup: true
8787

8888
- name: Build
89-
run: DEFAULT_NPM_TAG=latest pnpm run build
89+
run: DEFAULT_NPM_TAG=latest pnpm run build-ci
9090

9191
- name: Lint
9292
run: pnpm lint

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"version": "2.10.0",
44
"description": "",
55
"scripts": {
6-
"build": "pnpm -r build",
6+
"build": "pnpm -r --filter=\"!./packages/ide/*\" build",
7+
"build-ci": "pnpm -r build",
78
"lint": "pnpm -r lint",
89
"test": "pnpm -r --parallel run test --silent --forceExit",
910
"test-ci": "pnpm -r --parallel run --filter=\"./packages/**\" test --silent --forceExit",

0 commit comments

Comments
 (0)