Back to CI/CD

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
    • Viewing Results

      Check the CI/CD tab on any PR or commit to see:

      • Build status

      • Test results

        • Logs

        • Artifacts

Was this article helpful?

Still need help?

Can't find what you're looking for? Our support team is here to help.

Contact Support