feat: Add group mode with per-user mute/volume controls #7
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: Pull Request Checks | |
| on: | |
| pull_request: | |
| branches: [ main, develop ] | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| test-required: | |
| name: Tests (Required) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '18' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run all tests | |
| run: npm test | |
| - name: Test results summary | |
| if: always() | |
| run: | | |
| echo "## Test Results Summary" >> $GITHUB_STEP_SUMMARY | |
| echo "- Total tests: 146" >> $GITHUB_STEP_SUMMARY | |
| echo "- Expected pass rate: 100%" >> $GITHUB_STEP_SUMMARY | |
| echo "- Status: ${{ job.status }}" >> $GITHUB_STEP_SUMMARY | |
| code-quality: | |
| name: Code Quality Checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '18' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build verification | |
| run: npm run vite:build | |
| - name: Module validation | |
| run: npm run validate | |
| test-coverage: | |
| name: Test Coverage Report | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '18' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Generate coverage report | |
| run: npm run test:coverage | |
| - name: Coverage summary | |
| if: always() | |
| run: | | |
| echo "## Coverage Report" >> $GITHUB_STEP_SUMMARY | |
| echo "Coverage report generated successfully" >> $GITHUB_STEP_SUMMARY | |
| echo "Files covered:" >> $GITHUB_STEP_SUMMARY | |
| echo "- Services: PlayerManager, QueueManager, SessionManager, SocketManager" >> $GITHUB_STEP_SUMMARY | |
| echo "- State: SessionStore, StateTypes" >> $GITHUB_STEP_SUMMARY | |
| echo "- UI: Components and Widgets" >> $GITHUB_STEP_SUMMARY |