Skip to content
Open
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
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,10 @@ jobs:
- run: pnpm install --frozen-lockfile --ignore-scripts
- run: pnpm run rebuild:native
- run: node node_modules/electron/install.js
- run: pnpm run build
# Split build = tsc && vite build into separate steps so the type-checker's
# heap is released before Rollup bundles, lowering peak memory.
- run: pnpm run typecheck
- run: pnpm exec vite build
- run: pnpm run test:visual
- run: pnpm exec electron-builder --publish never

Expand Down Expand Up @@ -112,7 +115,10 @@ jobs:
- run: pnpm install --frozen-lockfile --ignore-scripts
- run: pnpm run rebuild:native
- run: node node_modules/electron/install.js
- run: pnpm run build
# Split build = tsc && vite build into separate steps so the type-checker's
# heap is released before Rollup bundles, lowering peak memory.
- run: pnpm run typecheck
- run: pnpm exec vite build
- name: Pre-cache Electron binary
shell: bash
run: |
Expand Down