This repository was archived by the owner on Apr 28, 2026. It is now read-only.
Get reflex docs from reflex repo #4320
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: integration-tests | |
| env: | |
| TELEMETRY_ENABLED: false | |
| NODE_OPTIONS: "--max_old_space_size=8192" | |
| REFLEX_DEP: "git+https://github.com/reflex-dev/reflex@main" | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| workflow_dispatch: | |
| inputs: | |
| reflex_dep: | |
| description: "Reflex dependency (full specifier)" | |
| permissions: | |
| contents: read | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| reflex-web: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install the latest version of uv | |
| uses: astral-sh/setup-uv@v6 | |
| with: | |
| python-version: "3.11" | |
| activate-environment: true | |
| - name: Install the project with latest reflex from main | |
| run: | | |
| uv sync --all-extras --dev \ | |
| --upgrade-package reflex \ | |
| --upgrade-package reflex-core \ | |
| --upgrade-package reflex-docgen \ | |
| --upgrade-package reflex-components-code \ | |
| --upgrade-package reflex-components-core \ | |
| --upgrade-package reflex-components-dataeditor \ | |
| --upgrade-package reflex-components-gridjs \ | |
| --upgrade-package reflex-components-lucide \ | |
| --upgrade-package reflex-components-markdown \ | |
| --upgrade-package reflex-components-moment \ | |
| --upgrade-package reflex-components-plotly \ | |
| --upgrade-package reflex-components-radix \ | |
| --upgrade-package reflex-components-react-player \ | |
| --upgrade-package reflex-components-recharts \ | |
| --upgrade-package reflex-components-sonner | |
| - name: Install custom reflex version (if specified) | |
| if: github.event.inputs.reflex_dep | |
| run: uv pip install '${{ github.event.inputs.reflex_dep }}' | |
| - name: Init Website for reflex-web | |
| run: reflex init | |
| - name: Export the website | |
| run: reflex export |