Github Actions
Joshua Emmanuel Santiago2026-02-13T06:45:01+00:00GitHub Actions Cheat Sheet GitHub Actions is a continuous integration and continuous delivery (CI/CD) platform that allows you to automate your build, test, and deployment pipeline. You can create workflows that build and test every pull request to your repository, or deploy merged pull requests to production. Key Components Workflow: An automated procedure that you add to your repository. Defined by a YAML file in .github/workflows/. Event: A specific activity that triggers a workflow run (e.g., push, pull_request, release). Job: A set of steps that execute on the same runner. Jobs run in parallel by default. Step: An individual task that can run commands [...]

