ci: establish automated security and dependency scanning workflow#4850
ci: establish automated security and dependency scanning workflow#4850basantnema31 wants to merge 2 commits into
Conversation
|
Someone is attempting to deploy a commit to the jhasourav07's projects Team on Vercel. A member of the Team first needs to authorize it. |
|
You are seeing this message because GitHub Code Scanning has recently been set up for this repository, or this pull request contains the workflow file for the Code Scanning tool. What Enabling Code Scanning Means:
For more information about GitHub Code Scanning, check out the documentation. |
|
🚨 Hey @basantnema31, the CI Pipeline is failing on this PR and it has been marked as Please fix the issues before this can be reviewed. Here's how: 1. Run checks locally before pushing: npm run format:check # Check Prettier formatting
npm run lint # Run ESLint
npm run typecheck # TypeScript type check
npm run test # Run unit tests (Vitest)
npm run build # Verify production build passes2. Auto-fix common issues: npm run format # Auto-fix formatting with Prettier
npm run lint -- --fix # Auto-fix lint errors where possible3. Check the full failure log here: Once you push a fix and the CI passes, the |
Resolves #4780. This PR adds a comprehensive security CI workflow to the repository. It introduces Dependabot configuration for NPM and GitHub Actions, integrates CodeQL for static application security testing, and adds an NPM audit step to the existing CI pipeline.