From a6e84be2df918c34f4f6c2225884bc6a71a4d051 Mon Sep 17 00:00:00 2001 From: Kristjan ESPERANTO <35647502+KristjanESPERANTO@users.noreply.github.com> Date: Tue, 4 Mar 2025 20:15:24 +0100 Subject: [PATCH] Add spell check to CI --- .github/workflows/test.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9ca1e951..7b4cb0e5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,7 +6,7 @@ env: npm_config_cache: /tmp/npm-cache jobs: - lint: + lint-and-spellcheck: runs-on: ubuntu-latest timeout-minutes: 15 steps: @@ -18,7 +18,11 @@ jobs: node-version: 'lts/*' - run: npm install - - run: npm run lint + - name: Run lint check + run: npm run lint + + - name: Run spell check + run: npm run test-spelling unit-tests: runs-on: ubuntu-latest