From 71ccabd2767878a743ff6f6026f024c2a7ef46ed Mon Sep 17 00:00:00 2001 From: "Jens A. Koch" Date: Thu, 20 Jun 2024 18:07:42 +0200 Subject: [PATCH] invoke cspell on root of workspace --- .github/workflows/check-spelling.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-spelling.yml b/.github/workflows/check-spelling.yml index b01f0d1..5867297 100644 --- a/.github/workflows/check-spelling.yml +++ b/.github/workflows/check-spelling.yml @@ -25,5 +25,5 @@ jobs: - name: 🙏 Check Spelling using cspell run: | - export CSPELL_OUTPUT=$(sudo cspell --config cspell.json --no-summary) + export CSPELL_OUTPUT=$(sudo cspell -c cspell.json --no-summary .) if [ -n "$CSPELL_OUTPUT" ]; then echo "$CSPELL_OUTPUT" && exit 1; fi; \ No newline at end of file