-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (41 loc) · 1.18 KB
/
proofreading.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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"