commit 8177015d31a901d247977a8909fd912fffb7779d
parent 36a728611d540fca66aca37f38bf78f4a92cc560
Author: David Eisinger <[email protected]>
Date: Mon, 7 Apr 2025 14:50:59 -0400
set timeout on spellcheck
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/.build.yml b/.build.yml
@@ -26,8 +26,7 @@ tasks:
# Spellcheck Markdown files
- spelling: |
- NPM_CONFIG_LOGLEVEL=verbose npm install --save-dev --omit=optional cspell
- npx cspell "content/**/*.md"
+ timeout 30s npx cspell "content/**/*.md" || [ $? -eq 124 ]
# Diff RSS template against Hugo default, make sure only differences are intentional
- rss: |