Skip to content

feat: Add usage metrics handling to streaming chat completions and update tests #57

feat: Add usage metrics handling to streaming chat completions and update tests

feat: Add usage metrics handling to streaming chat completions and update tests #57

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-24.04
name: Build
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '22.x'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm run test