Skip to content

Bump vite from 5.2.7 to 5.2.8 in /ui #1028

Bump vite from 5.2.7 to 5.2.8 in /ui

Bump vite from 5.2.7 to 5.2.8 in /ui #1028

Workflow file for this run

name: Test
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -el {0}
strategy:
fail-fast: false
matrix:
python-version:
- "3.9"
test_type:
- tests
jupyterhub:
- "jupyterhub>=4.1"
- "git+https://github.com/jupyterhub/jupyterhub.git@f9fb650a7b1cfbc5306cb674ec3038f1801f4e17"
steps:
- uses: actions/[email protected]
- name: Setup Python
uses: mamba-org/[email protected]
with:
environment-file: environment-dev.yml
create-args: >-
python=${{ matrix.python-version }}
-c conda-forge
- name: Install JHub Apps
run: |
pip install .
- name: Install JupyterHub
run: |
pip install ${{ matrix.jupyterhub }}
- name: conda list
run: conda list
- name: pip freeze
run: pip freeze
- name: Run Tests
run: |
pytest jhub_apps/${{ matrix.test_type }} -vvv -s