Skip to content

Commit

Permalink
run bun outdated on reflex-web to catch most of the packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Lendemor committed Oct 4, 2024
1 parent 31976ef commit 89d6315
Showing 1 changed file with 19 additions and 8 deletions.
27 changes: 19 additions & 8 deletions .github/workflows/check_outdated_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 89d6315

Please sign in to comment.