Files
claude-engineering-plugin/.github/workflows/ci.yml
Kieran Klaassen 36e7f3a370 Fix CI to run on all PRs and add manual trigger
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-24 14:49:49 -08:00

26 lines
380 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
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
- name: Run tests
run: bun test