Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,20 @@ jobs:
jq -e '.plugins' .claude-plugin/marketplace.json >/dev/null
- name: Run hook tests
run: sh tests/run.sh

opencode-plugin:
runs-on: ubuntu-latest
defaults:
run:
working-directory: .opencode-plugin
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm ci
- name: Typecheck
run: npm run typecheck
- name: Run tests
run: npm test
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,6 @@
# effect) can still recreate it. Same local-only policy applies regardless of
# which convention wrote it.
.agent/

# Deepwork progress files (local-only, not shared)
.slim/deepwork/
2 changes: 2 additions & 0 deletions .ignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
!.slim/deepwork/
!.slim/deepwork/**
4 changes: 4 additions & 0 deletions .opencode-plugin/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules/
dist/
*.log
.DS_Store
Loading
Loading