A Github action to run the erb-lint
gem on your project.
Add the following to your Githun action workflow to use the ERB Action:
name: Run ERB Linter
on:
push:
branches-ignore:
- 'master'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Erb Linter
uses: revans/[email protected]
env:
GITHUB_TOKEN: ${{secrets.github_token}}
MIT