Skip to content

Commit ffd2891

Browse files
committed
ci(codeql): scan GitHub Actions workflows instead of absent JS/TS
The javascript-typescript matrix entry fails with 'no source code seen' (exit 32, configuration error) — maa-framework has zero .js/.ts files. Pre-existing latent failure on main, surfaced by this PR's run. Same fix as oblibeny: analyze the 'actions' language (workflow YAML), which exists and is a meaningful security surface. https://claude.ai/code/session_01GJatEm2TVFSTBEkKXmserJ
1 parent e14fdcf commit ffd2891

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/codeql.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,12 @@ jobs:
3131
fail-fast: false
3232
matrix:
3333
include:
34-
- language: javascript-typescript
34+
# maa-framework has no JavaScript/TypeScript source — the
35+
# javascript-typescript extractor errors with "no source code seen"
36+
# (exit 32, configuration error). CodeQL's GitHub Actions analysis
37+
# scans the workflow YAML that does exist here, keeping this a
38+
# meaningful security check (same fix as oblibeny's codeql.yml).
39+
- language: actions
3540
build-mode: none
3641

3742
steps:

0 commit comments

Comments
 (0)