newsreader/.woodpecker/lint.yaml
Sonny Bakker aff565862c
All checks were successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/tests Pipeline was successful
Add woodpecker CI configuration
2024-12-26 20:20:21 +01:00

19 lines
385 B
YAML

when:
- event: push
branch: main
- event: pull_request
steps:
- name: python linting
image: python:3.11
commands:
- pip install uv
- uv sync --extra testing --extra ci
- ./.venv/bin/ruff check src/
- ./.venv/bin/ruff format --check src/
- name: javascript linting
image: node:lts
commands:
- npm install
- npm run lint