Add spell check to CI
Some checks are pending
test / lint-and-spellcheck (push) Waiting to run
test / unit-tests (18.x) (push) Waiting to run
test / unit-tests (20.x) (push) Waiting to run
test / unit-tests (22.x) (push) Waiting to run
test / integration-tests (18.x) (push) Waiting to run
test / integration-tests (20.x) (push) Waiting to run
test / integration-tests (22.x) (push) Waiting to run
test / e2e-tests (18.x) (push) Blocked by required conditions

This commit is contained in:
Kristjan ESPERANTO 2025-03-04 20:15:24 +01:00 committed by Traines
parent de63bf0a37
commit a6e84be2df

View file

@ -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