Add smoke tests to electron app

This commit is contained in:
2026-01-06 01:52:34 +01:00
parent 8fe05b5244
commit 947b5ded93
2 changed files with 29 additions and 0 deletions

View File

@@ -66,6 +66,28 @@ jobs:
- name: Build Electron bundles
run: ${{ matrix.build-command }}
- name: Smoke test AppImage (Linux)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y xvfb
chmod +x dist/*.AppImage
xvfb-run ./dist/*.AppImage
- name: Smoke test Windows exe
if: matrix.os == 'windows-latest'
shell: powershell
run: |
Start-Process -FilePath "dist\*.exe"
Start-Sleep -Seconds 5
- name: Smoke test macOS app
if: matrix.os == 'macos-latest'
run: |
open dist/*.app
sleep 5
pkill -f Imgfloat || true
- name: Upload Electron artifacts
uses: actions/upload-artifact@v4
with:

View File

@@ -88,6 +88,13 @@ function createWindow() {
}
app.whenReady().then(() => {
if (process.env.CI) {
process.on("uncaughtException", (err) => {
console.error("Uncaught exception:", err);
app.exit(1);
});
setTimeout(() => app.quit(), 3000);
}
autoUpdater.checkForUpdatesAndNotify();
let broadcastRect = { width: 0, height: 0 };