New pipelines...

This commit is contained in:
2026-01-31 11:52:13 -03:00
parent 203f141291
commit df7e2b2bcc
4 changed files with 37 additions and 28 deletions

19
.woodpecker/lint.yaml Normal file
View File

@@ -0,0 +1,19 @@
# PR pipeline: lint, build, test on the branch (separate steps, shared workspace).
# Runs when a pull request is opened or updated.
# Does not build Docker image or deploy.
when:
event: pull_request
steps:
- name: install
image: node:20-alpine
commands:
- corepack enable && corepack prepare pnpm@10.28.2 --activate
- pnpm install --frozen-lockfile || pnpm install
- name: lint
image: node:20-alpine
commands:
- corepack enable && corepack prepare pnpm@10.28.2 --activate
- pnpm run lint
- pnpm run lint:css