CI/CD Pipeline
Updated: Wed 06 May 2026 17:14:18 CEST — Phase 1 naming migration: removed Lovable Preview / pnpm references; restructured per service
Each Plings service has its own CI pipeline because each is its own repository. Vercel handles the build-and-deploy step for all of them; GitHub Actions handles lint, type-check, and test.
Plings-Web
GitHub Actions on PR:
- Install —
npm install(orbun install— both lockfiles currently exist; pick one consistently) - Lint —
npm run lint - Type-check —
tsc --noEmit - Build —
npm run build(Vite) - Tests — (not yet wired; Vitest + React Testing Library is the planned setup)
Preview deployment: Vercel auto-deploys every push to a non-main branch. Production deployment: triggered by merge to main.
Plings-Gateway
Similar shape: lint, build, deploy. The Gateway runs on Vercel Edge so the build output is bundled differently and bundle size matters more.
Plings-API
GitHub Actions on PR:
- Install —
pip install -r requirements.txt - Type-check —
mypy(configured inpyproject.toml) - Tests —
pytestonce the test suite is systematized; today the repo has many test scripts in the root that aren’t yet a formal pytest suite - Deploy — Vercel triggered by merge to
main
Reminder: Vercel deploys Plings-API from
requirements.txt. Always update it before merging if dependencies change. See Deployment Procedures.
Failure handling
A failing CI step blocks merge. Vercel preview-build failures are posted to the PR conversation by the Vercel GitHub integration.
Release tagging
There is no formal release-tag scheme today. If/when needed, tag vX.Y.Z on main after a successful production deploy.