Set Up GitHub Actions
Get started with GitHub Actions with a web interface.
We'll cover the following...
Requirements
Before you set up GitHub Actions or write the workflow configuration, it’s a good idea to define the requirements of what we want to achieve in this lesson:
- Deploy only when a pull request is merged into the master branch.
- Use the deploy script in
services/web/package.json
.
Setting up GitHub Actions
There are two ways to get started with GitHub Actions with a web interface:
-
Click the “Actions” tab on your repository page. It allows you to visually select existing workflows. This is an easy way ...