Skip to content

feat: Enhanced Python env manager, fix Project Settings freeze, UTF-8… #26

feat: Enhanced Python env manager, fix Project Settings freeze, UTF-8…

feat: Enhanced Python env manager, fix Project Settings freeze, UTF-8… #26

Workflow file for this run

name: Code Quality
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
quality-checks:
name: Quality Checks
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22.15.1'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run type checking
run: pnpm typecheck
- name: Run linting
run: pnpm lint