Skip to content

feat: forward preroll media URL in vast.play payload (PLAYER-3664) #36

feat: forward preroll media URL in vast.play payload (PLAYER-3664)

feat: forward preroll media URL in vast.play payload (PLAYER-3664) #36

Workflow file for this run

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