feat: forward preroll media URL in vast.play payload (PLAYER-3664) #36
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: CI | |
| on: | |
| pull_request: | |
| branches: [develop] | |
| jobs: | |
| lint-build-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - run: npm ci | |
| - run: npm run lint | |
| - run: npm run build | |
| - run: npm run test:unit | |
| e2e: | |
| runs-on: ubuntu-latest | |
| needs: lint-build-test | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - run: npm ci | |
| - run: npm run bundle:demo | |
| - name: Start server and run E2E tests | |
| run: | | |
| npx serve -l 3333 docs & | |
| npx wait-on http://localhost:3333/ | |
| npx cypress run --browser chrome |