Skip to content

Bump textlint-rule-preset-japanese from 10.0.3 to 10.0.4 #171

Bump textlint-rule-preset-japanese from 10.0.3 to 10.0.4

Bump textlint-rule-preset-japanese from 10.0.3 to 10.0.4 #171

Workflow file for this run

name: Proofreading
on:
pull_request:
branches:
- main
paths:
- '.devcontainer/*'
- '.github/workflows/proofreading.yml'
- '**.md'
- 'package.json'
- 'package-lock.json'
# Only cancel in-progress jobs or runs for the current workflow
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions: {}
jobs:
textlint:
name: Check from Textlint
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup reviewdog
uses: reviewdog/[email protected]
with:
reviewdog_version: latest
- name: Run Dev Container
uses: devcontainers/[email protected]
with:
runCmd: npx textlint -f checkstyle './{articles,books}/*.md' >> .textlint.log
- name: Run reviewdog
if: failure()
env:
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: cat .textlint.log | reviewdog -f=checkstyle -name="textlint" -reporter="github-pr-review"