-
Notifications
You must be signed in to change notification settings - Fork 231
46 lines (37 loc) · 1.01 KB
/
integration_tests.yml
File metadata and controls
46 lines (37 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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
- 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
run: uv sync --locked --all-extras --dev
- name: Install Requirements for reflex-web and reflex
run: uv pip install '${{ github.event.inputs.reflex_dep || env.REFLEX_DEP }}'
- name: Init Website for reflex-web
run: reflex init
- name: Export the website
run: reflex export