Phase 16: CI dependency audit & security checks #15
@@ -28,9 +28,7 @@ describe('assertNotDevBypassInProduction', () => {
|
|||||||
process.env.NODE_ENV = 'production';
|
process.env.NODE_ENV = 'production';
|
||||||
process.env.DEV_AUTH_BYPASS = 'true';
|
process.env.DEV_AUTH_BYPASS = 'true';
|
||||||
|
|
||||||
const exitSpy = vi
|
const exitSpy = vi.spyOn(process, 'exit').mockImplementation((() => {
|
||||||
.spyOn(process, 'exit')
|
|
||||||
.mockImplementation((() => {
|
|
||||||
throw new Error('process.exit called');
|
throw new Error('process.exit called');
|
||||||
}) as never);
|
}) as never);
|
||||||
|
|
||||||
@@ -44,9 +42,7 @@ describe('assertNotDevBypassInProduction', () => {
|
|||||||
process.env.NODE_ENV = 'development';
|
process.env.NODE_ENV = 'development';
|
||||||
process.env.DEV_AUTH_BYPASS = 'true';
|
process.env.DEV_AUTH_BYPASS = 'true';
|
||||||
|
|
||||||
const exitSpy = vi
|
const exitSpy = vi.spyOn(process, 'exit').mockImplementation((() => {
|
||||||
.spyOn(process, 'exit')
|
|
||||||
.mockImplementation((() => {
|
|
||||||
throw new Error('process.exit called');
|
throw new Error('process.exit called');
|
||||||
}) as never);
|
}) as never);
|
||||||
|
|
||||||
@@ -60,9 +56,7 @@ describe('assertNotDevBypassInProduction', () => {
|
|||||||
process.env.NODE_ENV = 'production';
|
process.env.NODE_ENV = 'production';
|
||||||
delete process.env.DEV_AUTH_BYPASS;
|
delete process.env.DEV_AUTH_BYPASS;
|
||||||
|
|
||||||
const exitSpy = vi
|
const exitSpy = vi.spyOn(process, 'exit').mockImplementation((() => {
|
||||||
.spyOn(process, 'exit')
|
|
||||||
.mockImplementation((() => {
|
|
||||||
throw new Error('process.exit called');
|
throw new Error('process.exit called');
|
||||||
}) as never);
|
}) as never);
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ import { selectBlocking, partitionAdvisories, isWaived } from '../check-audit.mj
|
|||||||
|
|
||||||
// Fixture: a High advisory not in the allowlist
|
// Fixture: a High advisory not in the allowlist
|
||||||
const highUnwaived = {
|
const highUnwaived = {
|
||||||
'1': {
|
1: {
|
||||||
severity: 'high',
|
severity: 'high',
|
||||||
github_advisory_id: 'GHSA-test-unwaived-high',
|
github_advisory_id: 'GHSA-test-unwaived-high',
|
||||||
module_name: 'some-package',
|
module_name: 'some-package',
|
||||||
@@ -24,7 +24,7 @@ const highUnwaived = {
|
|||||||
|
|
||||||
// Fixture: a High advisory that IS in the allowlist
|
// Fixture: a High advisory that IS in the allowlist
|
||||||
const highWaived = {
|
const highWaived = {
|
||||||
'2': {
|
2: {
|
||||||
severity: 'high',
|
severity: 'high',
|
||||||
github_advisory_id: 'GHSA-gv7w-rqvm-qjhr',
|
github_advisory_id: 'GHSA-gv7w-rqvm-qjhr',
|
||||||
module_name: 'esbuild',
|
module_name: 'esbuild',
|
||||||
@@ -34,13 +34,13 @@ const highWaived = {
|
|||||||
|
|
||||||
// Fixture: only moderate/low advisories
|
// Fixture: only moderate/low advisories
|
||||||
const moderateLow = {
|
const moderateLow = {
|
||||||
'3': {
|
3: {
|
||||||
severity: 'moderate',
|
severity: 'moderate',
|
||||||
github_advisory_id: 'GHSA-mod-erate-test',
|
github_advisory_id: 'GHSA-mod-erate-test',
|
||||||
module_name: 'another-package',
|
module_name: 'another-package',
|
||||||
title: 'Moderate vulnerability',
|
title: 'Moderate vulnerability',
|
||||||
},
|
},
|
||||||
'4': {
|
4: {
|
||||||
severity: 'low',
|
severity: 'low',
|
||||||
github_advisory_id: 'GHSA-low-test-only',
|
github_advisory_id: 'GHSA-low-test-only',
|
||||||
module_name: 'yet-another',
|
module_name: 'yet-another',
|
||||||
|
|||||||
@@ -62,7 +62,9 @@ try {
|
|||||||
pins = JSON.parse(readFileSync(pinsPath, 'utf8'));
|
pins = JSON.parse(readFileSync(pinsPath, 'utf8'));
|
||||||
} catch {
|
} catch {
|
||||||
// Gracefully degrade — no pins means everything is treated as unpinned
|
// Gracefully degrade — no pins means everything is treated as unpinned
|
||||||
console.warn('[check-outdated] Warning: could not read outdated-pins.json; treating all pins as unknown');
|
console.warn(
|
||||||
|
'[check-outdated] Warning: could not read outdated-pins.json; treating all pins as unknown',
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// ── Run pnpm audit to collect vulnerable module names ───────────────────────
|
// ── Run pnpm audit to collect vulnerable module names ───────────────────────
|
||||||
@@ -78,7 +80,9 @@ try {
|
|||||||
}
|
}
|
||||||
} catch {
|
} catch {
|
||||||
// Audit parse failure is non-fatal for the outdated report
|
// Audit parse failure is non-fatal for the outdated report
|
||||||
console.warn('[check-outdated] Warning: could not parse pnpm audit output; OUTDATED-WITH-ADVISORY cross-check skipped');
|
console.warn(
|
||||||
|
'[check-outdated] Warning: could not parse pnpm audit output; OUTDATED-WITH-ADVISORY cross-check skipped',
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// ── Run pnpm outdated ────────────────────────────────────────────────────────
|
// ── Run pnpm outdated ────────────────────────────────────────────────────────
|
||||||
@@ -141,13 +145,19 @@ console.log('=== DEPENDENCY HEALTH REPORT ===');
|
|||||||
console.log('');
|
console.log('');
|
||||||
|
|
||||||
// Tier 1: OUTDATED-WITH-ADVISORY (direct deps only — see WR-04 note in header)
|
// Tier 1: OUTDATED-WITH-ADVISORY (direct deps only — see WR-04 note in header)
|
||||||
console.log('[OUTDATED-WITH-ADVISORY] Outdated direct deps that also appear as an advisory subject');
|
console.log(
|
||||||
console.log(' (best-effort; most advisories are on transitive deps — authoritative gate is check-audit.mjs):');
|
'[OUTDATED-WITH-ADVISORY] Outdated direct deps that also appear as an advisory subject',
|
||||||
|
);
|
||||||
|
console.log(
|
||||||
|
' (best-effort; most advisories are on transitive deps — authoritative gate is check-audit.mjs):',
|
||||||
|
);
|
||||||
if (tiers.auditAdvisory.length === 0) {
|
if (tiers.auditAdvisory.length === 0) {
|
||||||
console.log(' (none)');
|
console.log(' (none)');
|
||||||
} else {
|
} else {
|
||||||
for (const pkg of tiers.auditAdvisory) {
|
for (const pkg of tiers.auditAdvisory) {
|
||||||
console.log(` ${pkg.name} ${pkg.current} → ${pkg.latest} (${pkg.dependencyType}) *** ADVISORY ON CURRENT VERSION ***`);
|
console.log(
|
||||||
|
` ${pkg.name} ${pkg.current} → ${pkg.latest} (${pkg.dependencyType}) *** ADVISORY ON CURRENT VERSION ***`,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
console.log('');
|
console.log('');
|
||||||
|
|||||||
Reference in New Issue
Block a user