Add spell check to CI

This commit is contained in:
Kristjan ESPERANTO 2025-03-04 20:15:24 +01:00
parent 813015dc86
commit 6ae3a30c82
No known key found for this signature in database

View file

@ -6,7 +6,7 @@ env:
npm_config_cache: /tmp/npm-cache npm_config_cache: /tmp/npm-cache
jobs: jobs:
lint: lint-and-spellcheck:
runs-on: ubuntu-latest runs-on: ubuntu-latest
timeout-minutes: 15 timeout-minutes: 15
steps: steps:
@ -18,7 +18,11 @@ jobs:
node-version: 'lts/*' node-version: 'lts/*'
- run: npm install - 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: unit-tests:
runs-on: ubuntu-latest runs-on: ubuntu-latest