Skip to content

feat(api-providers): 声明式 web_search / image_understanding 后端默认配置 #73

feat(api-providers): 声明式 web_search / image_understanding 后端默认配置

feat(api-providers): 声明式 web_search / image_understanding 后端默认配置 #73

Workflow file for this run

name: Schema Validation
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
validate:
name: Validate against frozen schema
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run validator
run: npm run validate
- name: Run unit tests
run: npm test