Skip to content

fix(skills): flatten skill directories to avoid nesting limitations #341

fix(skills): flatten skill directories to avoid nesting limitations

fix(skills): flatten skill directories to avoid nesting limitations #341

Workflow file for this run

name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
lint-and-test:
name: Lint and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Format check
run: bun run format:check
- name: Type check
run: bun run typecheck
- name: Run tests with coverage
run: bun run test:coverage