Merge pull request #646 from UTDNebula/fix/cannot-press-next-button-d… #1266
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: Lint and Formatting Check | |
| on: push | |
| jobs: | |
| main: | |
| name: Run ESLint + Prettier | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out Git repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: 'npm' | |
| - name: Run npm install | |
| run: npm ci | |
| - name: Run ESLint | |
| run: npm run lint:check | |
| - name: Run Prettier | |
| run: npm run format:check |