Skip to content

Add media cache coalescing, HEAD revalidation, and ranges #3

Add media cache coalescing, HEAD revalidation, and ranges

Add media cache coalescing, HEAD revalidation, and ranges #3

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
test:
name: Typecheck, test, and build
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 24
- name: Setup pnpm
run: |
corepack enable
corepack prepare pnpm@10.33.0 --activate
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Typecheck
run: pnpm typecheck
- name: Test
run: pnpm test
- name: Stress test media proxy conformance
run: CONFORMANCE_STRESS=1 node --import tsx --test test/media-proxy-e2e.test.ts
- name: Build
run: pnpm build