Skip to content

devcontainer設定を削除、ディレクトリ構成を変更、markdownでの執筆を前提に変更等 #26

devcontainer設定を削除、ディレクトリ構成を変更、markdownでの執筆を前提に変更等

devcontainer設定を削除、ディレクトリ構成を変更、markdownでの執筆を前提に変更等 #26

Workflow file for this run

on:
pull_request:
branches:
- main
permissions:
checks: write
contents: write
issues: write
pull-requests: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout source
uses: actions/checkout@v4
# check textlint
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
- uses: tsuyoshicho/action-textlint@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
reporter: github-pr-review
level: warning
textlint_flags: "./articles/main/**/*.md"
fail_on_error: true