Skip to content

feat: add AI provider support (manifest type "ai", onAiChat handler) #61

feat: add AI provider support (manifest type "ai", onAiChat handler)

feat: add AI provider support (manifest type "ai", onAiChat handler) #61

Workflow file for this run

name: CI
permissions:
contents: read
on:
push:
branches: [main, master]
pull_request:
jobs:
lint:
name: Lint & types
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run prettier-check
- run: npm run check-types
test:
name: Test (Node ${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x, 24.x]
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm run coverage