GitHub Actions allow you to automate workflows like Continuous Integration/Continuous Deployment (CI/CD).
Task 11: Create a simple GitHub Action.This workflow will run on every push to the repository.
.github/workflows/main.yml
file.
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
- run: npm install