Skip to content

Commit

Permalink
Add spell checking to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
bjsowa committed Mar 29, 2024
1 parent 509f2c6 commit 8478703
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,5 @@ jobs:
run: yarn typecheck
- name: Check Formatting
run: yarn formatcheck
- name: Check spelling
run: yarn spellcheck
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"write-heading-ids": "docusaurus write-heading-ids",
"typecheck": "tsc",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,mdx}\"",
"formatcheck": "prettier --check \"**/*.{js,jsx,ts,tsx,mdx}\""
"formatcheck": "prettier --check \"**/*.{js,jsx,ts,tsx,mdx}\"",
"spellcheck": "cspell \"**/*.mdx\""
},
"dependencies": {
"@docusaurus/core": "3.1.1",
Expand Down

0 comments on commit 8478703

Please sign in to comment.