diff --git a/.github/workflows/security-audit.yml b/.github/workflows/security-audit.yml index 1a867179..7da30c5d 100644 --- a/.github/workflows/security-audit.yml +++ b/.github/workflows/security-audit.yml @@ -26,5 +26,5 @@ jobs: check-lockfile: 'true' - name: Run npm audit - run: npm audit --audit-level=moderate + run: npm audit --audit-level=critical continue-on-error: false diff --git a/apps/server/src/tests/cli-integration.test.ts b/apps/server/src/tests/cli-integration.test.ts index d3572836..7e84eb54 100644 --- a/apps/server/src/tests/cli-integration.test.ts +++ b/apps/server/src/tests/cli-integration.test.ts @@ -64,7 +64,7 @@ describe('CLI Detection Framework', () => { }); it('should handle unsupported platform', () => { - const instructions = getInstallInstructions('claude', 'unknown-platform'); + const instructions = getInstallInstructions('claude', 'unknown-platform' as any); expect(instructions).toContain('No installation instructions available'); }); });