CI/CD Basics
Set up continuous integration for your projects
Last updated: December 28, 2025
CI/CD Basics
Automate your builds and deployments.
Creating a Pipeline
Add a .statly/ci.yaml file:
name: Build & Test
on:
push:
branches: [main]
pull_request:jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm install
- run: npm test
Pipeline Features
- Parallel jobs
- Matrix builds
- Caching
- Artifacts
- Secrets management
- Build status
- Test results
- Logs
- Artifacts
Viewing Results
Check the CI/CD tab on any PR or commit to see:
Was this article helpful?