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