Skip to content

fix(tokens): gpt-5.5 and gpt-5.4 to 128000 — now actually measured #498

fix(tokens): gpt-5.5 and gpt-5.4 to 128000 — now actually measured

fix(tokens): gpt-5.5 and gpt-5.4 to 128000 — now actually measured #498

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- name: Type check
run: npx tsc --noEmit
- name: Build
run: npm run build
- name: Test
run: npm test
- name: Verify dist output
run: node dist/index.js --help