mirror of
https://github.com/imgfloat/server.git
synced 2026-02-05 03:39:26 +00:00
Add smoke tests to electron app
This commit is contained in:
22
.github/workflows/ci.yml
vendored
22
.github/workflows/ci.yml
vendored
@@ -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:
|
||||
|
||||
@@ -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 };
|
||||
|
||||
Reference in New Issue
Block a user