From a65638b1f34fef490c078aec84cea47b66acff0b Mon Sep 17 00:00:00 2001 From: David Eisinger Date: Wed, 15 Apr 2026 01:01:18 -0400 Subject: [PATCH] Add cspell to Gitea Action --- .gitea/workflows/deploy.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index b995cb2..7c10262 100644 --- 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