Skip to content

Reset panel scroll and simplify UI #16

Reset panel scroll and simplify UI

Reset panel scroll and simplify UI #16

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
frontend:
name: Frontend
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: latest
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 24
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Type check
run: pnpm exec tsc --noEmit
- name: Build
run: pnpm build
backend:
name: Backend
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: pip install pyftpdlib
- name: Lint with ruff
run: |
pip install ruff --root-user-action=ignore
ruff check main.py
continue-on-error: true
- name: Type check with pyright
run: |
pip install pyright
pyright main.py