Skip to content

THEOplayer version 11 #1153

THEOplayer version 11

THEOplayer version 11 #1153

Workflow file for this run

name: Lint
on:
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
pr-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 1
submodules: true
- name: Use Node.js 22
uses: actions/setup-node@v6
with:
node-version: 22
cache: 'npm'
- run: npm ci
- run: npm run gen-api-docs
- run: npm run check-format
- run: npm run lint
- run: npm run typecheck