Skip to content

Commit 4b9b89b

Browse files
committed
chore: attempt to fix CI tests by adding CLI build step
1 parent c980ab0 commit 4b9b89b

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
id: test
5858
run: |
5959
npm run test-coverage-ci
60-
npm run test-cli-coverage-ci
60+
npm run build-cli && npm run test-cli-coverage-ci
6161
npm run test-coverage-ci --workspaces --if-present
6262
6363
- name: Upload test coverage report

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
"build": "npm run generate-config-types && npm run build-ui && npm run build-ts",
5252
"build-ts": "tsc --project tsconfig.publish.json && ./scripts/fix-shebang.sh",
5353
"build-ui": "vite build",
54+
"build-cli": "cd ./packages/git-proxy-cli && npm run build",
5455
"check-types": "tsc",
5556
"check-types:server": "tsc --project tsconfig.publish.json --noEmit",
5657
"test": "NODE_ENV=test vitest --run --dir ./test",

0 commit comments

Comments
 (0)