chore(deps)(deps-dev): bump typescript-eslint from 8.56.1 to 8.57.1 #38
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
| name: Frontend Quality Checks | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - 'resources/js/**' | |
| - 'resources/css/**' | |
| - 'package.json' | |
| - 'package-lock.json' | |
| - 'tsconfig.json' | |
| - 'eslint.config.js' | |
| - 'vitest.config.ts' | |
| - '.github/workflows/frontend.yml' | |
| jobs: | |
| frontend: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.4' | |
| extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite | |
| coverage: none | |
| - name: Install Composer dependencies | |
| run: composer install --prefer-dist --no-progress --no-interaction --no-dev --optimize-autoloader | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '22' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Generate wayfinder routes | |
| run: php artisan wayfinder:generate | |
| - name: Run TypeScript type checking | |
| run: npm run types | |
| - name: Run ESLint | |
| run: npm run lint:check | |
| - name: Run Prettier | |
| run: npm run format:check | |
| - name: Run unit tests | |
| run: npm run test:unit | |
| - name: Build assets | |
| run: npm run build |