diff --git a/.github/workflows/learn-github-actions.yml b/.github/workflows/learn-github-actions.yml index 9a5afa2..9702fb7 100644 --- a/.github/workflows/learn-github-actions.yml +++ b/.github/workflows/learn-github-actions.yml @@ -1,6 +1,6 @@ name: learn-github-actions -run-name: ${{ github.actor }} is learning GitHub Actions on: [push] + jobs: lint-and-format: runs-on: ubuntu-latest @@ -11,3 +11,7 @@ jobs: node-version: '18' - run: npm install - run: npm run lint + - name: Spellcheck + run: | + npm install -g cspell + cspell "**/*.{js,jsx,ts,tsx,md}"