@moneyforward/code-review-action
TypeScript icon, indicating that this package has built-in type declarations

0.2.0 • Public • Published

Code review action

Analyze code statically in Github actions

Inputs

analyzer

Specify the analyzer plugin

... and more

options

Changes the analyzer options.

Specify the options in JSON format.

files

Specify files or directories

(Multiple files or directories can be specified by separating them with line feed)

working_directory

Changes the current working directory of the Node.js process

reporter_type_notation

Change the reporter.

(Multiple can be specified separated by commas)

Example usage

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 }}

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/moneyforward/code-review-action

License

The gem is available as open source under the terms of the MIT License.

Package Sidebar

Install

npm i @moneyforward/code-review-action

Weekly Downloads

26

Version

0.2.0

License

MIT

Unpacked Size

49.3 kB

Total Files

33

Last publish

Collaborators

  • oss-frontend-moneyforward
  • ichikawa.takashi
  • mf-admin