Skip to content

test(test-optimization): skip unsupported v5 cases #7039

test(test-optimization): skip unsupported v5 cases

test(test-optimization): skip unsupported v5 cases #7039

Workflow file for this run

name: Electron
on:
pull_request:
push:
branches: [master]
schedule:
- cron: 0 4 * * *
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true
jobs:
macos:
runs-on: macos-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: ./.github/actions/node
with:
version: '24.15'
- uses: ./.github/actions/install
- run: npm run test:integration:electron
- uses: ./.github/actions/upload-junit-artifacts
if: "!cancelled()"
with:
id: ${{ github.job }}
ubuntu:
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: ./.github/actions/node
with:
version: '24.15'
- uses: ./.github/actions/install
# Electron needs a display even for headless (show: false) windows.
# xvfb-run provides a virtual framebuffer so the test can run without a physical display.
- run: xvfb-run --auto-servernum npm run test:integration:electron
- uses: ./.github/actions/upload-junit-artifacts
if: "!cancelled()"
with:
id: ${{ github.job }}