Files
landing/.woodpecker/test.yaml
2026-01-31 11:52:13 -03:00

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