Skip to content

Add window.postMessage support v2 #2890

Add window.postMessage support v2

Add window.postMessage support v2 #2890

Workflow file for this run

name: CI
on:
workflow_call:
workflow_dispatch:
pull_request:
branches: [main, dev, 'release/**']
push:
branches: [main, dev, 'release/**']
permissions: read-all
jobs:
pytest:
uses: ./.github/workflows/pytest.yaml
secrets: inherit
lint-backend:
uses: ./.github/workflows/lint-backend.yaml
secrets: inherit
e2e-tests:
uses: ./.github/workflows/e2e-tests.yaml
secrets: inherit
lint-ui:
uses: ./.github/workflows/lint-ui.yaml
secrets: inherit
ci:
runs-on: ubuntu-latest
name: Run CI
needs: [lint-backend, pytest, lint-ui, e2e-tests]
steps:
- name: Done
run: echo "Done"