Skip to content

Refactor docs-ng to Python and add comprehensive self-documentation #44

Refactor docs-ng to Python and add comprehensive self-documentation

Refactor docs-ng to Python and add comprehensive self-documentation #44

Workflow file for this run

name: Spelling Check
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
spelling:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
- name: Setup Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: "22"
cache: "pnpm"
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # pin@v6.2.0
with:
python-version: "3.13"
- name: Install dependencies
run: |
pnpm install
pip install -r requirements.txt
- name: Run aggregate
run: |
make aggregate
- name: Run spelling check
run: |
make spelling