Skip to content

Commit

Permalink
Add workflow for running erb lint
Browse files Browse the repository at this point in the history
  • Loading branch information
syed-ali-tw committed Aug 6, 2024
1 parent c20b056 commit da5898c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/erblint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Run Erb Lint

on:
workflow_call:

jobs:
run-erblint:
name: Run ErbLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
show-progress: false

- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true

- name: Run ErbLint
run: bundle exec erblint --lint-all --parallel --format github --format progress

0 comments on commit da5898c

Please sign in to comment.