Bump the javascript-dependencies group across 1 directory with 13 upd… #1339
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: RuboCop | |
on: [push] | |
jobs: | |
rubocop: | |
name: Run rubocop | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./ruby | |
env: | |
RAILS_ENV: test | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.1.4 | |
bundler-cache: true | |
working-directory: ./ruby | |
- name: Run rubocop | |
run: bundle exec rubocop |