Add more features #69
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: Misspellings checks | |
# This workflow performs some misspelling checks on the repository | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
misspell: | |
name: Check misspellings | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone | |
uses: actions/checkout@v4 | |
- name: Check misspellings | |
uses: codespell-project/actions-codespell@v2 | |
with: | |
builtin: clear,rare | |
check_filenames: true | |
skip: package-lock.json |