Skip to content

Commit

Permalink
feat: add spell check
Browse files Browse the repository at this point in the history
  • Loading branch information
patrikzita committed Jan 14, 2024
1 parent b778c57 commit 3359390
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/learn-github-actions.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: learn-github-actions
run-name: ${{ github.actor }} is learning GitHub Actions
on: [push]

jobs:
lint-and-format:
runs-on: ubuntu-latest
Expand All @@ -11,3 +11,7 @@ jobs:
node-version: '18'
- run: npm install
- run: npm run lint
- name: Spellcheck
run: |
npm install -g cspell
cspell "**/*.{js,jsx,ts,tsx,md}"

0 comments on commit 3359390

Please sign in to comment.