Skip to content

Commit

Permalink
feat(spell-check): Add Node.js setup and install Brazilian Portuguese…
Browse files Browse the repository at this point in the history
… dictionary in spell checking workflow
  • Loading branch information
endersonmenezes committed Nov 12, 2024
1 parent ffe0259 commit 9c9bd97
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/spell-checking.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install Node
uses: actions/setup-node@v4
with:
node-version: 18

- run: |
npm install -g @cspell/dict-pt-br
- uses: streetsidesoftware/cspell-action@v6
with:
incremental_files_only: ${{ github.event.inputs.incremental_files_only }}
Expand Down

0 comments on commit 9c9bd97

Please sign in to comment.