We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c980ab0 commit 4b9b89bCopy full SHA for 4b9b89b
2 files changed
.github/workflows/ci.yml
@@ -57,7 +57,7 @@ jobs:
57
id: test
58
run: |
59
npm run test-coverage-ci
60
- npm run test-cli-coverage-ci
+ npm run build-cli && npm run test-cli-coverage-ci
61
npm run test-coverage-ci --workspaces --if-present
62
63
- name: Upload test coverage report
package.json
@@ -51,6 +51,7 @@
51
"build": "npm run generate-config-types && npm run build-ui && npm run build-ts",
52
"build-ts": "tsc --project tsconfig.publish.json && ./scripts/fix-shebang.sh",
53
"build-ui": "vite build",
54
+ "build-cli": "cd ./packages/git-proxy-cli && npm run build",
55
"check-types": "tsc",
56
"check-types:server": "tsc --project tsconfig.publish.json --noEmit",
"test": "NODE_ENV=test vitest --run --dir ./test",
0 commit comments