Skip to content

fix: restore RetrievalAugmentor and ToolPermissionManager formatting #94

fix: restore RetrievalAugmentor and ToolPermissionManager formatting

fix: restore RetrievalAugmentor and ToolPermissionManager formatting #94

Workflow file for this run

name: CI
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
test:
name: Test & Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install PNPM
uses: pnpm/action-setup@v2
with:
version: 9
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm run build
- name: Lint
run: pnpm run lint
- name: Test with coverage
run: pnpm run test -- --coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Type check
run: pnpm run typecheck