add logo to readme #5
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: "Check Spelling" | |
on: | |
push: | |
# You can manually run this workflow. | |
workflow_dispatch: | |
jobs: | |
# --------------------------------------------------------------------------------------- | |
check-spelling: | |
# --------------------------------------------------------------------------------------- | |
name: "Spell Checker" | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: 🤘 Checkout Code | |
uses: actions/checkout@v4 # https://github.com/actions/checkout | |
- name: 🔽 Install Dependencies | |
run: sudo npm install -g cspell | |
- name: 🙏 Check Spelling using cspell | |
run: | | |
export CSPELL_OUTPUT=$(sudo cspell lint --no-summary --no-progress .) | |
if [ -n "$CSPELL_OUTPUT" ]; then echo "$CSPELL_OUTPUT" && exit 1; fi; |