pleroma-fe/.woodpecker/lint.yaml
Henry Jameson a417ea0f2c seriously...
2026-09-04 01:33:26 +03:00

29 lines
686 B
YAML

when:
- event: pull_request
evaluate: 'CI_COMMIT_SOURCE_BRANCH != "weblate" && not(CI_COMMIT_SOURCE_BRANCH startsWith "renovate/")'
- event: push
branch: ${CI_REPO_DEFAULT_BRANCH}
- event: manual
branch: ${CI_REPO_DEFAULT_BRANCH}
steps:
install-depends:
image: &node-image
docker.io/node:26-alpine
commands:
- npm install --global yarn
- yarn --frozen-lockfile
biome:
image: *node-image
depends_on: install-depends
commands:
- npm install --global yarn
- yarn ci-biome
stylelint:
image: *node-image
depends_on: install-depends
commands:
- npm install --global yarn
- yarn ci-stylelint