⚙️
DevOps

Basic CI/CD configuration

0views0comments

A build → test → migrate → deploy pipeline.

Overview

A basic CI/CD pipeline runs four sequential steps automatically on every commit to the main branch.

The steps

Build → run tests/typecheck → run database migrations → deploy to the target environment.

Note

Migrations should run as a separate step from deploy, so it's easier to roll back if a later step fails.

Tags

cicddevops

Docs

Back

Category

DevOps · Docs

Basic CI/CD configuration | WIKI IT