CI/CD Integrations

Automate platform workflows in your CI/CD pipelines with GitHub Actions, GitLab CI, Jenkins, and more.

What You’ll Find Here

  • GitHub Actions - Workflow automation with GitHub

  • GitLab CI - Pipeline integration

  • Jenkins - Jenkins pipeline examples

  • Azure DevOps - Azure Pipelines integration

  • CI/CD Best Practices - Testing and deployment patterns

All Topics

Common Use Cases

Nightly Test Data Refresh

Automatically refresh test databases every night:

on:
  schedule:
    - cron: '0 2 * * *'  # 2 AM daily

Pull Request Validation

Validate workflow configs on PRs:

- name: Validate Config
  run: tdk validate-config --config-file workflow.yaml

Environment Provisioning

Provision test environments on-demand.