Skip to content

docs(cli): add docs task #134

docs(cli): add docs task

docs(cli): add docs task #134

Workflow file for this run

name: Check Markdown
on:
pull_request:
branches:
- '**'
jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Use Node from Volta
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
with:
node-version-file: 'package.json'
cache: 'npm'
- name: install dependencies
run: npm ci
- name: check internal markdown links
run: npm run check-links
markdown-spelling-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Use Node from Volta
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
with:
node-version-file: 'package.json'
cache: 'npm'
- name: install dependencies
run: npm ci
- name: check spelling
run: npm run spellcheck