chore: update eslint config #132
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # The main CI workflow, running only on PRs, checking code-quality and running tests. | |
| name: 'CI PR Code Quality' | |
| on: [pull_request] | |
| jobs: | |
| code-quality-and-tests: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: ./.github/actions/setup | |
| - name: Run ESlint | |
| uses: ./.github/actions/eslint | |
| - name: Run Spellcheck | |
| run: pnpm spellcheck | |
| - name: Run Prettier | |
| run: pnpm format:check | |
| - name: Run TypeScript | |
| run: pnpm type:check | |
| - name: Run Tests | |
| run: pnpm test |