Skip to content

Commit ac65acd

Browse files
committed
feat(ci): add build:all script to avoid release fail
1 parent b096c2f commit ac65acd

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
run: pnpm i --frozen-lockfile
7070

7171
- name: Build
72-
run: pnpm run build
72+
run: pnpm run build:all
7373

7474
- name: Coverage
7575
run: pnpm run coverage

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
"build:ext": "npm -C packages/vscode run build",
4343
"build:eslint": "npm -C packages/eslint run build",
4444
"build:mcp": "npm -C packages/mcp run build",
45+
"build:all": "npm run build && npm run build:eslint && npm run build:mcp && npm run build:ext",
4546
"play": "npm -C packages/playground run dev",
4647
"lint": "eslint .",
4748
"test": "vitest",

0 commit comments

Comments
 (0)