GitHub Actions
CI/CD platform native to GitHub. Automates workflows on code push, pull requests, schedules, or manual triggers.
Common workflows:
- Run tests on every commit (Testing)
- Lint and type-check code (TypeScript, Python)
- Build and push Docker images
- Deploy to Vercel, AWS, or other platforms
- Automated releases and publishing
Configured via .github/workflows/*.yml files in the repository. Integrates directly with Git and GitHub PRs for seamless CD.