🐛: fix Wall component case sensitivity #65
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 | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| code-quality: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: ⬇️ Checkout Repo | |
| uses: actions/checkout@v4 | |
| - name: 🟢 Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22.16.0 | |
| cache: 'npm' | |
| - name: 📦 Install root deps | |
| run: npm ci | |
| - name: 🧹 Run Prettier | |
| run: npx prettier . --check | |
| - name: 📦 Install frontend deps | |
| working-directory: フロントエンド | |
| run: npm ci | |
| - name: 🧠 Run ESLint | |
| working-directory: フロントエンド | |
| run: npx eslint . | |
| - name: 📦 Install backend deps | |
| working-directory: バックエンド | |
| run: npm ci | |
| - name: 🧠 Run ESLint | |
| working-directory: バックエンド | |
| run: npx eslint . | |
| - name: 🔍 Type check | |
| working-directory: バックエンド | |
| run: npx tsc --noEmit | |
| - name: 🧪 Run Tests | |
| working-directory: バックエンド | |
| run: npx vitest run --update false |