> ## Documentation Index
> Fetch the complete documentation index at: https://docs.compozy.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# CI/CD

> Continuous Integration and Deployment integrations for Compozy

export const Badge = ({children}) => {
  const getColorClass = () => {
    switch (children) {
      case 'Available':
        return 'bg-green-100 text-green-800 dark:bg-green-900/30 dark:text-green-400';
      case 'Beta':
        return 'bg-yellow-100 text-yellow-800 dark:bg-yellow-900/30 dark:text-yellow-400';
      case 'Coming Soon':
        return 'bg-blue-100 text-blue-800 dark:bg-blue-900/30 dark:text-blue-400';
      default:
        return 'bg-gray-100 text-gray-800 dark:bg-gray-900/30 dark:text-gray-400';
    }
  };
  return <span className={`inline-flex items-center rounded-full px-2 py-1 text-xs font-medium ${getColorClass()}`}>
            {children}
        </span>;
};

Automate your Compozy workflows deployment and testing with our CI/CD integrations. Choose from popular CI/CD platforms to seamlessly integrate Compozy into your development pipeline.

<CardGroup cols={3}>
  <Card title="GitHub Actions" icon="github" href="/integrations/cicd/github-actions">
    Automate Compozy workflows using GitHub Actions. Perfect for GitHub-based projects.
    <Badge>Available</Badge>
  </Card>

  <Card title="GitLab CI" icon="gitlab" href="/integrations/cicd/gitlab">
    Integrate Compozy with GitLab CI/CD pipelines for automated testing and deployment.
    <Badge>Beta</Badge>
  </Card>

  <Card title="CircleCI" icon="circle" href="/integrations/cicd/circle-ci">
    Use Compozy in your CircleCI pipelines for consistent deployments.
    <Badge>Coming Soon</Badge>
  </Card>

  <Card title="Jenkins" icon="jenkins" href="/integrations/cicd/jenkins">
    Integrate Compozy with Jenkins automation server for enterprise CI/CD.
    <Badge>Coming Soon</Badge>
  </Card>
</CardGroup>
