chore(ci): add security workflow with dependency audit, CodeQL, and secret scanning#56
Open
OkeyAmy wants to merge 1 commit into
Open
chore(ci): add security workflow with dependency audit, CodeQL, and secret scanning#56OkeyAmy wants to merge 1 commit into
OkeyAmy wants to merge 1 commit into
Conversation
… gitignore Adds a 5-job GitHub Actions security pipeline (dependency audit, dependency review, CodeQL, ESLint security rules, secret scanning via gitleaks). No external API keys required — all jobs use GITHUB_TOKEN or npm public registry. Adds eslint.security.config.mjs for targeted security linting of src/ using eslint-plugin-security. Updates main eslint config and .gitignore to exclude the local sandbox directory.
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.
Adds a dedicated security CI workflow that runs on every PR and push to
main,dev,stg.Changes
.github/workflows/security.yml— new security pipeline (5 jobs, zero external API keys)eslint.security.config.mjs— security-focused ESLint config usingeslint-plugin-securityeslint.config.mjs— addsandbox/**to ignore listSecurity jobs
npm audit --omit=devsecurity-extended)eslint-plugin-securityNotes
GITHUB_TOKEN(automatic) or run fully offline.eslint.security.config.mjsruns separately from the main lint so security findings surface as their own CI check.Testing
All locally-runnable steps verified clean before this PR:
npm audit --omit=dev --audit-level=high→ 0 vulnerabilitiesnpm run lint→ 0 errorsnpm run typecheck→ cleannpm run build→ cleannpm test→ 1483/1483 pass