Skip to content

feat: add Anthropic Messages API and Google Gemini API endpoints #41

feat: add Anthropic Messages API and Google Gemini API endpoints

feat: add Anthropic Messages API and Google Gemini API endpoints #41

Workflow file for this run

name: CI
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: "22"
- name: Install dev dependencies
run: npm install
- name: Run lint
run: npm run lint
test:
name: Test (Node ${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["20", "22"]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Install dev dependencies
run: npm install
- name: Run tests
run: npm test