Skip to content

feat: add DSM support for Amazon EventBridge #531

feat: add DSM support for Amazon EventBridge

feat: add DSM support for Amazon EventBridge #531

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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: ./.github/actions/dd-sts-api-key
id: dd-sts
- uses: ./.github/actions/node/latest
- uses: ./.github/actions/install
- run: yarn test:integration:electron
- uses: ./.github/actions/push_to_test_optimization
if: "!cancelled()"
with:
dd_api_key: ${{ steps.dd-sts.outputs.api_key }}
ubuntu:
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: ./.github/actions/dd-sts-api-key
id: dd-sts
- uses: ./.github/actions/node/latest
- 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 yarn test:integration:electron
- uses: ./.github/actions/push_to_test_optimization
if: "!cancelled()"
with:
dd_api_key: ${{ steps.dd-sts.outputs.api_key }}