chore: remove outdated conventional commit format guide #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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| ci: | |
| if: github.event_name != 'push' || !startsWith(github.ref, 'refs/tags/') | |
| runs-on: ubuntu-latest | |
| name: 🧪 Lint, Test, Build | |
| steps: | |
| - name: 📥 Checkout | |
| uses: actions/checkout@v3 | |
| - name: 🟢 Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: 'npm' | |
| - name: 📦 Install deps | |
| run: npm ci | |
| - name: 🔍 Lint (if exists) | |
| run: npm run lint | |
| - name: 🎨 Format check (Prettier) | |
| run: npm run format | |
| - name: 🧪 Run tests | |
| run: npm test | |
| - name: 🛠 Build | |
| run: npm run build |