Skip to content

Remove close (×) button from on-video controller (#1460) #28

Remove close (×) button from on-video controller (#1460)

Remove close (×) button from on-video controller (#1460) #28

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build-and-test:
name: Lint, Build, Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
env:
PUPPETEER_SKIP_DOWNLOAD: '1'
- run: npm audit --audit-level=high
- run: npm run lint
- run: npm run build
- run: npm test
- uses: actions/upload-artifact@v7
if: always()
with:
name: dist-node-${{ matrix.node-version }}
path: dist/
retention-days: 7