Compare commits

..

2 commits

Author SHA1 Message Date
Kristjan ESPERANTO
3f91cee1e0
Merge 6ae3a30c82 into 6b67a77823 2025-03-04 19:17:19 +00:00
Kristjan ESPERANTO
6ae3a30c82
Add spell check to CI 2025-03-04 20:15:24 +01:00

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