when: - event: push - event: pull_request - event: manual steps: - name: python linting image: ghcr.io/astral-sh/uv:python3.11-alpine commands: - uv sync --group ci - uv run --no-sync -- ruff check src/ - uv run --no-sync -- ruff format --check src/ - name: javascript linting image: node:lts-alpine commands: - npm ci - npm run lint