ci(security): gate mainline on CodeQL JS/TS code scanning with security-extended queries#131
Merged
bradsaucier merged 8 commits intomainfrom Apr 17, 2026
Merged
Conversation
Signed-off-by: Bradley Saucier <bradley.saucier@snhu.edu>
Added CodeQL scanning as a merge gate in ADR-0028. Signed-off-by: Bradley Saucier <bradley.saucier@snhu.edu>
Updated badge links and corrected the number of documented ADRs in the README. Signed-off-by: Bradley Saucier <bradley.saucier@snhu.edu>
Add CodeQL static analysis section to SECURITY.md Signed-off-by: Bradley Saucier <bradley.saucier@snhu.edu>
This document outlines the decision to implement a CodeQL source code scanning gate for JavaScript and TypeScript code in the repository, detailing the workflow, requirements for findings, and consequences of this addition. Signed-off-by: Bradley Saucier <bradley.saucier@snhu.edu>
Signed-off-by: Bradley Saucier <bradley.saucier@snhu.edu>
Added a section on static analysis with GitHub CodeQL and its configuration details. Signed-off-by: Bradley Saucier <bradley.saucier@snhu.edu>
|
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. |
Clarify backup checkpoint tests to ensure distinct handling of various result states. Signed-off-by: Bradley Saucier <bradley.saucier@snhu.edu>
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.
Summary
Adds GitHub CodeQL JavaScript/TypeScript code scanning as a required merge gate, closing the last credible gap in OpsNormal's security posture: there is currently no source-level static analysis. Dependency-level audit (
npm audit --audit-level=high), CSP directive drift, build provenance attestation, and the fail-closed import commit proof already exist. CodeQL extends that discipline to the application source.What changes
.github/workflows/codeql.yml, pinned to immutable action SHAs, runningsecurity-extendedandsecurity-and-qualityquery packs on every PR, every push tomain, and weekly onmain.SECURITY.md,README.md,docs/test-plan.md, anddocs/decisions/README.mdupdated so the new gate stays visible.CHANGELOG.md[Unreleased]->Securityentry.What this does not change
No application source is modified.
ci.yml,deploy.yml, Playwright projects, coverage thresholds, the CSP directive contract, Trusted Types policy, and release artifact reuse are all untouched. This PR is additive.Why this gate
SECURITY.mdalready scopes security review to import validation, undo verification, data-integrity, CSP bypass, and service-worker correctness. Those categories are exactly what the CodeQL JS/TS query packs are designed to find. Adding the gate makes the stated scope machine-enforced on every PR instead of review-dependent.See ADR-0028 for decision context and triage policy.