chore(deps-dev): bump rubocop-performance from 1.19.1 to 1.20.1 #566
Workflow file for this run
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: ReviewDog | |
on: | |
pull_request: | |
jobs: | |
rubocop: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: rubocop | |
uses: reviewdog/action-rubocop@v2 | |
with: | |
rubocop_version: gemfile | |
rubocop_flags: -a | |
rubocop_extensions: rubocop-capybara:gemfile rubocop-factory_bot:gemfile rubocop-rails:gemfile rubocop-rspec:gemfile rubocop-performance:gemfile | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
reporter: github-pr-review | |
fail_on_error: true | |
- name: Notify slack build result | |
uses: lazy-actions/slatify@master | |
if: always() | |
with: | |
type: ${{ job.status }} | |
job_name: '*ReviewDog Rubocop*' | |
mention: 'here' | |
username: 'GitHub Actions' | |
icon_emoji: 'dog' | |
mention_if: 'failure' | |
channel: '#ember-rails-todo-app' | |
url: ${{ secrets.SLACK_WEBHOOK }} | |
commit: true | |
token: ${{ secrets.GITHUB_TOKEN }} | |
brakeman: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.0.5 | |
- name: brakeman | |
uses: reviewdog/action-brakeman@v2 | |
with: | |
brakeman_version: gemfile | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
reporter: github-pr-review | |
- name: Notify slack build result | |
uses: lazy-actions/slatify@master | |
if: always() | |
with: | |
type: ${{ job.status }} | |
job_name: '*ReviewDog Brakeman*' | |
mention: 'here' | |
username: 'GitHub Actions' | |
icon_emoji: 'dog' | |
mention_if: 'failure' | |
channel: '#ember-rails-todo-app' | |
url: ${{ secrets.SLACK_WEBHOOK }} | |
commit: true | |
token: ${{ secrets.GITHUB_TOKEN }} | |
eslint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: reviewdog/action-setup@v1 | |
with: | |
reviewdog_version: latest | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: "ember/todo-app/package.json" | |
- name: install ember-cli | |
run: yarn global add ember-cli | |
- name: Setup Ember.js App and eslint formatter | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} | |
run: | | |
cd ember/todo-app | |
yarn install --frozen-lockfile | |
yarn add eslint-formatter-rdjson -D | |
- name: Run reviewdog | |
env: | |
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} | |
run: | | |
cd ember/todo-app | |
yarn --silent run eslint -f rdjson . | reviewdog -f=rdjson -reporter=github-pr-review | |
- name: Notify slack build result | |
uses: lazy-actions/slatify@master | |
if: always() | |
with: | |
type: ${{ job.status }} | |
job_name: '*ReviewDog eslint*' | |
mention: 'here' | |
username: 'GitHub Actions' | |
icon_emoji: 'dog' | |
mention_if: 'failure' | |
channel: '#ember-rails-todo-app' | |
url: ${{ secrets.SLACK_WEBHOOK }} | |
commit: true | |
token: ${{ secrets.GITHUB_TOKEN }} | |
reek: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Use ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: reek | |
uses: reviewdog/action-reek@v1 | |
with: | |
reek_version: gemfile | |
reporter: github-pr-review |