Github Actions

Events

An event is a trigger for workflow

A common event that occurs on a repo, is when someone pushes code.

Jobs

  • In this workflow we have a single named, super-lint

  • It specifies multiple steps and actions

Under steps, there are 2 actions being run.

  1. First it is going to checkout our code with checkout@v2

  2. Then its going to run the super-linter@v3 against it

runs-on: specifies a container environment for the code to run within. By default Github runs this container for you - but you can host your own if you wish.

The default container options are: ubuntu, windows, macOS

Runners

Steps

actions

Last updated