Add CI/CD enhancements: TypeScript checks, security scanning, and Dependabot#7
Open
abhishyantkhare wants to merge 1 commit intomainfrom
Open
Add CI/CD enhancements: TypeScript checks, security scanning, and Dependabot#7abhishyantkhare wants to merge 1 commit intomainfrom
abhishyantkhare wants to merge 1 commit intomainfrom
Conversation
…dabot - Added .github/workflows/typecheck.yml for TypeScript type checking on affected packages - Added .github/workflows/security.yml with CodeQL analysis and dependency auditing - Added .github/dependabot.yml for automated dependency updates (npm + GitHub Actions) - Enhanced .gitignore with additional security patterns (*.pem, secrets/, .env.local) Follows existing CI workflow patterns with Nx caching and Slack notifications
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.
Original Task
Changes
Files Created
.github/workflows/typecheck.yml- TypeScript type-checking workflowyarn nx affected -t test:typesto check affected packages.github/workflows/security.yml- Security scanning workflowyarn auditchecking for critical vulnerabilities.github/dependabot.yml- Dependabot configurationFiles Modified
.gitignore- Enhanced with security patterns*.pemfor private key filessecrets/directory.env.localand.env.*.localpatternsReviewed (No Changes Needed)
CLAUDE.md/AGENTS.md- Already comprehensive with:Implementation Notes
All new workflows follow the existing patterns in
ci.yml:TypeScript checking uses
test:typestarget which maps totsc --noEmitin packages that have it configuredSecurity workflow runs CodeQL as a separate job from dependency audit to allow parallel execution and separate failure tracking