Skip to content

feat(docs): guide to run node #43

feat(docs): guide to run node

feat(docs): guide to run node #43

Workflow file for this run

name: Spell Check
on:
pull_request:
paths:
- "**/*.md"
- "**/*.mdx"
- "**/*.txt"
- "**/*.yml"
- "**/*.yaml"
- "**/*.py"
- "**/*.js"
- "**/*.ts"
- "**/*.html"
- "**/*.rst"
jobs:
spell-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install codespell
run: pip install codespell
- name: Run Spell Check
run: |
codespell \
--ignore-words=.github/config/ignored-words.txt \
--skip="*.svg,*.png,*.jpg,*.woff,*.woff2,*.pdf,*.json,package-lock.json" \
--quiet-level=2 \
--check-filenames \
.
- name: Annotate spelling errors
if: failure()
run: echo "::error::Spelling errors detected. Please fix the typos or add to the ignore list if intentional."