Files
landing/.woodpecker/build.yaml
2026-02-01 02:42:02 -03:00

15 lines
407 B
YAML

# 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: build
image: node:20-alpine
commands:
- corepack enable && corepack prepare pnpm@10.28.2 --activate
- pnpm run build
depends_on:
- lint