Adding automation is not just for production, you should be adding them to all your environments. In this short guide you will add several types of Github actions to a workflow.
Github actions are infrastructure as code, and are created in YAML declarations that exist in the repo.
Start by creating a new file in you repo, .github/workflows/push.yml
YAML uses tabs to determine the scope, so make sure you format your file as such:
name: Default Node CI
on:
pull_request:
types: [opened, synchronize, reopened]