Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:

# --- Build & package (no signing) ---
- name: Run tests
run: npm test
run: npm run test:integration:mcp

- name: Build application
run: npm run prebuild-info && npx electron-vite build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:

- name: Run unit tests
if: needs.changes.outputs.src == 'true'
run: npm test
run: npm run test:integration:mcp

- name: Build application
if: needs.changes.outputs.src == 'true'
Expand Down
45 changes: 22 additions & 23 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"test:e2e": "npm run build && npx playwright test",
"test:e2e:headed": "npm run build && npx playwright test --headed",
"test:integration": "node --import tsx/esm tests/integration/choice-detection.test.ts",
"test:integration:mcp": "npx tsx tests/integration/mcp-discovery.test.ts",
"test:all": "npm run test && npm run test:e2e",
"postinstall": "npx patch-package && npx @electron/rebuild -w node-pty && node -e \"if(process.platform==='darwin'){require('child_process').execSync('codesign --force --deep --sign - --entitlements build/entitlements.mac.plist node_modules/electron/dist/Electron.app',{stdio:'inherit'})}\"",
"rebuild-pty": "npx @electron/rebuild -f -w node-pty",
Expand Down
Loading