Skip to content

Improve Pulse docs: "What is Pulse?" and "Getting started" #5240

Improve Pulse docs: "What is Pulse?" and "Getting started"

Improve Pulse docs: "What is Pulse?" and "Getting started" #5240

Workflow file for this run

name: Documentation Checks
on:
push:
branches:
- main
paths:
- "content/**/*"
pull_request:
branches:
- main
paths:
- "content/**/*"
jobs:
spellcheck:
name: "Docs: Spellcheck"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: Check out the code
- uses: actions/setup-node@v4
name: Setup node
with:
node-version: "18"
- run: npm install -g cspell
name: Install cSpell
- run: cspell --config ./cSpell.json "content/**/*.mdx" --no-progress
name: Run cSpell