newsreader/.woodpecker/lint.yaml
Sonny Bakker 91949622b7
Some checks failed
ci/woodpecker/push/build Pipeline failed
ci/woodpecker/push/lint Pipeline failed
ci/woodpecker/push/tests Pipeline was successful
Update woodpecker configuration
2025-05-05 15:11:55 +02:00

18 lines
376 B
YAML

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