Bump reviewdog/action-setup from 1.0.6 to 1.1.0 #102
Workflow file for this run
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: | |
- '.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 Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version: 18 | |
- name: Setup from package.json | |
run: npm ci | |
- name: Setup reviewdog | |
uses: reviewdog/[email protected] | |
with: | |
reviewdog_version: latest | |
- name: Run lint | |
run: npx textlint -f checkstyle './{articles,books}/*.md' >> .textlint.log | |
- name: Run reviewdog | |
if: failure() | |
env: | |
REVIEWDOG_GITHUB_API_TOKEN: ${{ github.token }} | |
run: cat .textlint.log | reviewdog -f=checkstyle -name="textlint" -reporter="github-pr-review" |