Conversation
d9eec6d to
75727f2
Compare
Add GitHub Actions CI/CD Pipeline
Adds a comprehensive CI/CD workflow (.github/workflows/ci.yml) with three jobs:
### Test Job
- Runs deno lint to check code style
- Runs deno fmt --check to verify formatting
- Runs deno test with all required permissions
### Claude Code Review Job
- Automatically reviews PRs using Claude AI
- Checks for:
- TypeScript strict mode compliance
- Code style adherence (CLAUDE.md guidelines)
- Domain-driven design principles
- Test coverage requirements
- Security vulnerabilities
- Potential bugs and edge cases
- Posts review comments directly on PRs
### Auto-merge Job
- Automatically merges PRs when ALL checks pass (lint, test, format, Claude review)
- Only activates for:
- Dependabot PRs (automatic)
- PRs with the automerge label (manual)
- Uses squash merge strategy
- Security: Only works for same-repository PRs (not forks)
75727f2 to
1ce6b17
Compare
8 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add GitHub Actions CI/CD Pipeline
Adds a comprehensive CI/CD workflow (.github/workflows/ci.yml) with three jobs:
Test Job
Claude Code Review Job
Auto-merge Job