Analyze code statically in Github actions
Specify the analyzer plugin
- Brakeman: @moneyforward/code-review-action-brakeman-plugin
- Rubocop: @moneyforward/code-review-action-rubocop-plugin
- Rails Best Practices: @moneyforward/code-review-action-rails_best_practices-plugin
- Reek: @moneyforward/code-review-action-reek-plugin
- Querly: @moneyforward/code-review-action-querly-plugin
- ESLint: @moneyforward/code-review-action-eslint-plugin
- JSHint: @moneyforward/code-review-action-jshint-plugin
- CoffeeLint: @moneyforward/code-review-action-coffeelint-plugin
- stylelint: @moneyforward/code-review-action-stylelint-plugin
- Goodcheck: @moneyforward/code-review-action-goodcheck-plugin
- misspell: @moneyforward/code-review-action-misspell-plugin
... and more
Changes the analyzer options.
Specify the options in JSON format.
Specify files or directories
(Multiple files or directories can be specified by separating them with line feed)
Changes the current working directory of the Node.js process
Change the reporter.
(Multiple can be specified separated by commas)
name: Analyze code statically
"on": pull_request
jobs:
brakeman:
runs-on: ubuntu-latest
env:
ANALYZER: '@moneyforward/code-review-action-brakeman-plugin'
ANALYZER_VERSION: '~0'
steps:
- uses: actions/checkout@v2
- run: sudo npm i -g --no-save "${ANALYZER}@${ANALYZER_VERSION}"
- id: node-env
run: echo "::set-output name=path::$(npm root -g)"
- name: Analyze code statically
uses: moneyforward/code-review-action@v0
env:
NODE_PATH: ${{ steps.node-env.outputs.path }}
with:
analyzer: ${{ env.ANALYZER }}
Bug reports and pull requests are welcome on GitHub at https://github.com/moneyforward/code-review-action
The gem is available as open source under the terms of the MIT License.