Skip to content

Add single-turn, multi-turn, arena and multimodal metrics to typescript #17

Add single-turn, multi-turn, arena and multimodal metrics to typescript

Add single-turn, multi-turn, arena and multimodal metrics to typescript #17

Workflow file for this run

name: TypeScript Lint
on:
pull_request:
paths:
- 'typescript/**'
- '.github/workflows/typescript_lint.yml'
push:
branches:
- main
paths:
- 'typescript/**'
- '.github/workflows/typescript_lint.yml'
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
container:
image: node:22
defaults:
run:
working-directory: typescript
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint -- .
- name: Run Prettier (check)
run: npx prettier --check "src/**/*.ts" "test/**/*.ts"