Skip to content

Complete Basic Memory ContextEngine integration #63

Complete Basic Memory ContextEngine integration

Complete Basic Memory ContextEngine integration #63

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.8"
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Fetch skills
run: bun scripts/fetch-skills.ts
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Lint
run: bun run lint
- name: Typecheck
run: bun run check-types
- name: Unit tests
run: bun test