Skip to content

Filled afterword and other blank contents. #226

Filled afterword and other blank contents.

Filled afterword and other blank contents. #226

Workflow file for this run

name: TextLint
on:
push:
branches:
- "main"
paths:
- "**/*.md"
pull_request:
paths:
- "**/*.md"
jobs:
run-textlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '16'
cache: npm
- name: Install Dependent Module
run: npm ci
- name: Run TextLint
run: npm run textlint "**/*.md"