This repository has been archived by the owner on May 28, 2024. It is now read-only.
Bump rails from 7.0.4.3 to 7.0.8.1 #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: [pull_request] | |
jobs: | |
lint: | |
name: Rubocop | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
- name: rubocop | |
uses: reviewdog/action-rubocop@v2 | |
with: | |
rubocop_version: gemfile | |
rubocop_extensions: rubocop-performance:gemfile rubocop-rails:gemfile rubocop-github:gemfile rubocop-rspec:gemfile | |
# erb-lint has issues with Alpine (of which is used extensively throughout our products), follow the following issues before re-enabling: | |
# https://github.com/Shopify/erb-lint/issues/221 | |
# https://github.com/Shopify/better-html/issues/69 | |
# - name: erb-lint | |
# uses: ./.github/actions/erblint | |
# with: | |
# rubocop_extensions: rubocop-performance:gemfile rubocop-rails:gemfile rubocop-github:gemfile |