Harden repository scans and add LOC comparisons
ci / test (pull_request) Successful in 15s

This commit is contained in:
2026-07-21 17:28:04 +00:00
parent ecc1578b92
commit cd84c68a3e
12 changed files with 279 additions and 29 deletions
+2
View File
@@ -8,4 +8,6 @@ test("detectLanguage recognizes common source files", () => {
assert.equal(detectLanguage("/tmp/Dockerfile"), "Dockerfile");
assert.equal(detectLanguage("/tmp/types.d.ts"), "TypeScript");
assert.equal(detectLanguage("/tmp/file.unknown"), "Plain Text");
assert.equal(detectLanguage("/tmp/component.astro"), "Astro");
assert.equal(detectLanguage("/tmp/Makefile"), "Makefile");
});