ci-demo-2/.woodpecker/.frontend.yml

29 lines
520 B
YAML

---
when:
path: "frontend/**"
variables:
- &frontend_image "cl00e9ment/node.js-builder:git"
clone:
git:
image: woodpeckerci/plugin-git
settings:
skip_verify: true
steps:
"prepare":
image: *frontend_image
commands:
- cd frontend
- pnpm install
"lint:style":
image: *frontend_image
commands:
- cd frontend
- pnpm run prettier
"lint:analyze":
image: *frontend_image
commands:
- cd frontend
- pnpm run lint
depends_on:
- "lint_general"