Bump textlint from 14.3.0 to 14.4.2 #173
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: 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" |