Skip to content
alert-octagon

GitHub Action

Run textlint with reviewdog

v3.9.0 Latest version

Run textlint with reviewdog

alert-octagon

Run textlint with reviewdog

🐶Run textlint with reviewdog on pull requests to improve document writing experience

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Run textlint with reviewdog

uses: tsuyoshicho/[email protected]

Learn more about this action in tsuyoshicho/action-textlint

Choose a version

GitHub Action: Run textlint with reviewdog

notice

action-textlint use textlint within npm ecosystem.

detail

Release

This action runs textlint with reviewdog on pull requests to improve text review experience.

based on reviewdog/action-vint

github-pr-check example github-pr-review example

Notice: This action is composition action. It need npm ci.

You accept below one:

  • Your workflow manually setup to run npm ci.
  • This action automatic run npm ci.

Inputs

github_token

Required. Default is ${{ github.token }}.

level

Optional. Report level for reviewdog [info,warning,error]. It's same as -level flag of reviewdog.

reporter

Reporter of reviewdog command [github-pr-check,github-check,github-pr-review]. Default is github-pr-review. It's same as -reporter flag of reviewdog.

github-pr-review can use Markdown and add a link to rule page in reviewdog reports.

filter_mode

Optional. Filtering mode for the reviewdog command [added,diff_context,file,nofilter]. Default is added.

fail_on_error

Optional. Exit code for reviewdog when errors are found [true,false] Default is false.

reviewdog_flags

Optional. Additional reviewdog flags

textlint_flags

textlint arguments (i.e. target dir:doc/*)

package_manager

Optional. Package manager used in the repository [npm,yarn,pnpm] Default is npm.

Customizes

.textlintrc put in your repo. And need textlint included in project package.json .

Example usage

name: reviewdog
on: [pull_request]
jobs:
  textlint:
    name: runner / textlint
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2
        with:
          submodules: true
      - name: Setup node/npm
        uses: actions/setup-node@v1
        with:
          node-version: '15'
      - name: textlint-github-pr-check
        uses: tsuyoshicho/action-textlint@v3
        with:
          github_token: ${{ secrets.github_token }}
          reporter: github-pr-check
          textlint_flags: "doc/**"
      - name: textlint-github-check
        uses: tsuyoshicho/action-textlint@v3
        with:
          github_token: ${{ secrets.github_token }}
          reporter: github-check
          textlint_flags: "doc/**"
      - name: textlint-github-pr-review
        uses: tsuyoshicho/action-textlint@v3
        with:
          github_token: ${{ secrets.github_token }}
          reporter: github-pr-review
          textlint_flags: "doc/**"