Skip to content

Commit

Permalink
Actually run rubocop on the template.rb files
Browse files Browse the repository at this point in the history
  • Loading branch information
robotdana committed May 5, 2023
1 parent b552f45 commit 8c96973
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ permissions:
contents: read # to fetch code (actions/checkout)

jobs:
test:
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -30,6 +30,18 @@ jobs:
cache: "yarn"
- run: yarn install
- run: yarn run format-check
rubocop:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- name: Install Ruby and Bundler
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: '3.0'
- run: bundle exec rubocop

test_generated_apps:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 8c96973

Please sign in to comment.