Github Codespaces Support ๐ช #355
Workflow file for this run
This file contains 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: lighthouse-tests | |
on: | |
push: | |
branches: [ main ] | |
paths-ignore: | |
- '**/*.md' | |
pull_request: | |
branches: [ main ] | |
paths-ignore: | |
- '**/*.md' | |
permissions: | |
contents: read | |
defaults: | |
run: | |
shell: bash | |
env: | |
PYTHONIOENCODING: "utf8" | |
TELEMETRY_ENABLED: false | |
NODE_OPTIONS: "--max_old_space_size=4096" | |
jobs: | |
reflex-web: | |
strategy: | |
fail-fast: false | |
matrix: | |
# Show OS combos first in GUI | |
os: [ ubuntu-latest] | |
python-version: [ "3.11.4" ] | |
node-version: [ "16.x" ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- uses: ./.github/actions/setup_build_env | |
with: | |
python-version: ${{ matrix.python-version }} | |
run-poetry-install: true | |
create-venv-at-path: .venv | |
- name: Clone Reflex Website Repo | |
uses: actions/checkout@v4 | |
with: | |
repository: reflex-dev/reflex-web | |
ref: reflex-ci | |
path: reflex-web | |
- name: Install Requirements for reflex-web | |
working-directory: ./reflex-web | |
run: poetry run pip install -r requirements.txt | |
- name: Init Website for reflex-web | |
working-directory: ./reflex-web | |
run: poetry run reflex init | |
- name: Install LightHouse Pre-reqs / Run LightHouse | |
run: | | |
# Check that npm is home | |
npm -v | |
poetry run bash scripts/lighthouse.sh ./reflex-web prod | |
env: | |
LHCI_GITHUB_APP_TOKEN: $ | |
POSTHOG: $ | |