Add retry mechanism into video/audio playbacks for safari mobile playback issues #146
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: PR Checks | |
| on: | |
| pull_request: | |
| branches: ['**'] | |
| jobs: | |
| root-repo: | |
| name: Root Repository 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: '20' | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Build project | |
| run: npm run build | |
| #- name: Run Lint | |
| #run: npm run lint | |
| - name: Check Formatting | |
| run: npm run format:check | |
| - name: Run Tests with Coverage | |
| run: npm run test:coverage | |
| config-service: | |
| name: Config Service 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: '20' | |
| - name: Install dependencies | |
| working-directory: config-service | |
| run: npm install | |
| - name: Run Lint | |
| working-directory: config-service | |
| run: npm run lint | |
| - name: Check Formatting | |
| working-directory: config-service | |
| run: npm run format:check | |
| - name: Run Tests with Coverage | |
| working-directory: config-service | |
| run: npm run test:coverage |