feat: support embedding Reflex apps into host pages via mount_target #4220
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: performance-tests | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: | |
| - "main" # or "master" | |
| paths-ignore: | |
| - "**/*.md" | |
| pull_request: | |
| workflow_dispatch: | |
| env: | |
| REFLEX_TELEMETRY_ENABLED: false | |
| NODE_OPTIONS: "--max_old_space_size=8192" | |
| PR_TITLE: ${{ github.event.pull_request.title }} | |
| APP_HARNESS_HEADLESS: 1 | |
| PYTHONUNBUFFERED: 1 | |
| jobs: | |
| benchmarks: | |
| name: Run benchmarks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-tags: true | |
| fetch-depth: 0 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.14" | |
| - name: Install dependencies | |
| run: uv sync --all-extras --dev | |
| - name: Run benchmarks | |
| uses: CodSpeedHQ/action@v4 | |
| with: | |
| mode: instrumentation | |
| run: uv run pytest -v tests/benchmarks --codspeed |