commit a65638b1f34fef490c078aec84cea47b66acff0b
parent 816ae727f3b871e476a4e56616411ab4c93be919
Author: David Eisinger <[email protected]>
Date: Wed, 15 Apr 2026 01:01:18 -0400
Add cspell to Gitea Action
Diffstat:
1 file changed, 8 insertions(+), 0 deletions(-)
diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml
@@ -19,6 +19,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
+ - name: Setup Node
+ uses: actions/setup-node@v4
+ with:
+ node-version: 22
+
- name: Install packages
run: |
apt-get update
@@ -36,6 +41,9 @@ jobs:
- name: Verify RSS template diff
run: ./bin/check-rss-template
+ - name: Spellcheck Markdown
+ run: npx -y cspell "content/**/*.md"
+
- name: Build site
run: ./bin/build