Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/frontend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,12 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

# Audit PRODUCTION dependencies only, matching the Security Scan gate in
# deploy.yml. Dev-only tooling (vite, picomatch, eslint) never ships to
# users, and its advisories are frequently only fixable via breaking major
# bumps — gating CI on them just blocks every unrelated PR.
- name: Run npm audit
run: npm audit --audit-level=high
run: npm audit --omit=dev --audit-level=high

- name: Run Snyk security scan
uses: snyk/actions/node@master
Expand Down
2 changes: 1 addition & 1 deletion frontend/client/src/pages/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { KineticText } from "@/components/motion/kinetic-text";
import { Footer } from "@/components/footer";
import { Button } from "@/components/ui/button";
import { Link } from "wouter";
import { Terminal, Shield, Cpu, Zap, Activity, Code } from "lucide-react";
import { Terminal, Shield, Cpu, Zap, Code } from "lucide-react";
import { useQuery } from "@tanstack/react-query";
import { SEO } from "@/components/seo";
import type { ApiStats } from "@/lib/api-types";
Expand Down
Loading