記事詳細ページ 投稿日時の上マージンを広げる #132
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: textlint | |
on: | |
pull_request: | |
jobs: | |
textlint: | |
name: textlint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# with: | |
# submodules: true | |
- name: Setup Node/npm | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: textlint-github-check | |
uses: tsuyoshicho/action-textlint@v3 | |
with: | |
github_token: ${{ secrets.github_token }} | |
reporter: github-check | |
textlint_flags: "." | |
level: 'error' | |
- name: textlint-github-pr-review | |
uses: tsuyoshicho/action-textlint@v3 | |
with: | |
github_token: ${{ secrets.github_token }} | |
reporter: github-pr-review | |
textlint_flags: "." | |
level: 'error' |