This repository was archived by the owner on Jun 15, 2026. It is now read-only.
feat: Add Main Menu, Character Selection, and Pause Menu #455
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
| name: Code Quality Checks | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: false | |
| jobs: | |
| codeQuality: | |
| name: Eslint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Check with eslint | |
| id: eslint-run | |
| run: | | |
| npm run lint | |
| - name: Build with Vite | |
| run: npm run build |