Files
mifi-links/.woodpecker/ci.yml
mifi 22b21d254c
Some checks failed
ci/woodpecker/manual/ci Pipeline failed
ci/woodpecker/manual/deploy unknown status
A few more pipeline updates
2026-02-06 16:18:20 -03:00

22 lines
586 B
YAML

# CI: runs on every push. Lint, check, test, build (dev), e2e.
when:
- event: pull_request
- event: push
branch: main
- event: tag
- event: manual
steps:
build:
image: node:22-bookworm-slim
commands:
- corepack enable
- corepack prepare pnpm@latest --activate
- pnpm install --frozen-lockfile
- pnpm run lint
- pnpm run check
- pnpm run test:run
- pnpm run build
- pnpm exec playwright install chromium --with-deps
- pnpm run test:e2e