chore: added new descriptions && styles refinements #83
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Spell checking | |
on: [pull_request_target, push, issue_comment] | |
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 run check-spelling |