Skip to content

Article/sobre nomes #22

Article/sobre nomes

Article/sobre nomes #22

Workflow file for this run

name: Run spell checking
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
spellchecking:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
name: Check out the code
- uses: actions/setup-node@v1
name: Run spell check
with:
node-version: "18"
- run: npm install -g cspell
- run: npm install -g @cspell/dict-pt-br
- run: cspell link add @cspell/dict-pt-br
- run: cspell --no-must-find-files --config ./cspell.json "**/*.md"
- run: cspell --config ./cspell.json "**/*.mdx"