Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 3.8k
v0.7.48: perf improvements, confluence and sharepoint fixes, dependency updates, global folders, desktop app#6042
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
404334179b1ed102311cab69fdbdcb3611be8e3d69a957fa4c77300f3d72ab3dc9487969b8364805ac33665fd4e60f2d0348d59ca591702bc809845b57cd581d64b925b7cf996cacd7c507483f41a9ae9a3413cfFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Diff view
Diff view
Uh oh!
There was an error while loading. Please reload this page.
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,85 @@ | ||
| name: Desktop E2E | ||
| # Smoke coverage of the real Electron shell, plus an advisory canary leg | ||
| # against electron@latest so Chromium-cadence breakage surfaces before an | ||
| # upgrade is attempted (U18/U22). | ||
| # | ||
| # Manual-only for now: the desktop app is tested locally, so the | ||
| # pull_request trigger is disabled until desktop CI is turned back on. | ||
| on: | ||
| workflow_dispatch: | ||
| concurrency: | ||
| group: desktop-e2e-${{ github.ref }} | ||
| cancel-in-progress: true | ||
| jobs: | ||
| e2e: | ||
| name: E2E (${{ matrix.electron }}) | ||
| runs-on: macos-14 | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| electron: [pinned, latest] | ||
| continue-on-error: ${{ matrix.electron == 'latest' }} | ||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | ||
| - name: Setup Bun | ||
| uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2 | ||
| with: | ||
| bun-version: 1.3.13 | ||
| - name: Install dependencies | ||
| run: bun install --frozen-lockfile | ||
| - name: Switch to electron@latest (canary) | ||
| if: matrix.electron == 'latest' | ||
| working-directory: apps/desktop | ||
| run: bun add -d electron@latest | ||
| - name: Bundle main and preload | ||
| working-directory: apps/desktop | ||
| run: bun run build | ||
| - name: Run Playwright _electron smoke suite | ||
| working-directory: apps/desktop | ||
| run: bunx playwright test | ||
| - name: Upload test results | ||
| if: failure() | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: desktop-e2e-results-${{ matrix.electron }} | ||
| path: apps/desktop/test-results | ||
| retention-days: 7 | ||
| package-smoke: | ||
waleedlatif1 marked this conversation as resolved.
Dismissed
Uh oh!There was an error while loading. Please reload this page. | ||
| name: Unsigned package smoke | ||
| runs-on: macos-14 | ||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | ||
| - name: Setup Bun | ||
| uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2 | ||
| with: | ||
| bun-version: 1.3.13 | ||
| - name: Setup Node | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: 22 | ||
| - name: Install dependencies | ||
| run: bun install --frozen-lockfile | ||
| - name: Bundle and package unsigned | ||
| working-directory: apps/desktop | ||
| env: | ||
| CSC_IDENTITY_AUTO_DISCOVERY: 'false' | ||
| run: | | ||
| bun run build | ||
| bunx electron-builder --mac dir --publish never | ||
waleedlatif1 marked this conversation as resolved.
Dismissed
Uh oh!There was an error while loading. Please reload this page. | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.