Skip to content

🚨 close p tag in javadoc. See #256 #313

🚨 close p tag in javadoc. See #256

🚨 close p tag in javadoc. See #256 #313

Workflow file for this run

---
name: Node.js CI
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
lint:
name: Lint Markdown Files
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v7
with:
ref: ${{ github.head_ref || github.ref_name }}
- name: Set up Node.js
uses: actions/setup-node@v7
with:
node-version: '22'
cache: npm
- name: Install dependencies
run: npm ci
- name: Validate branch name
run: npx validate-branch-name
- name: Run markdownlint
run: npx markdownlint "**/*.md"
- name: Textlint
run: npx textlint "**/*.md"