fix(docs): spellchecking in docs and typo fixes

This commit is contained in:
Tisham Dhar
2023-08-25 16:22:37 +02:00
committed by Dario Tranchitella
parent ffa4a47e6b
commit d096a25d66
11 changed files with 262 additions and 14 deletions
+27
View File
@@ -0,0 +1,27 @@
name: docs-lint
on:
push:
branches: [ "*" ]
paths:
- '.github/workflows/docs-lint.yml'
- 'docs/content/**'
pull_request:
branches: [ "*" ]
paths:
- '.github/workflows/docs-lint.yml'
- 'docs/content/**'
jobs:
spelling:
name: Spell Check
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm install --global spellchecker-cli
- run: make docs-lint