run bun outdated on reflex-web to catch most of the packages

This commit is contained in:
Lendemor 2024-10-05 00:42:54 +02:00
parent 31976efe21
commit 89d63159c2

View File

@ -42,18 +42,29 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: ./.github/actions/setup_build_env
with:
python-version: 3.9
python-version: 3.10
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: main
path: reflex-web
- name: Install Requirements for reflex-web
working-directory: ./reflex-web
run: poetry run uv pip install -r requirements.txt
- name: Install additional dependencies for DB access
run: poetry run uv pip install psycopg2-binary
- name: Init Website for reflex-web
working-directory: ./reflex-web
run: poetry run reflex init
- name: Run Website and Check for errors
run: |
poetry run bash scripts/integration.sh ./reflex-web
- name: Check outdated frontend dependencies
run: |
mkdir -p blank
cd blank
poetry run reflex init --template blank
cd .web
bun outdated