From c2b6ad2a8028c428881ab6cba955ae241ab5673c Mon Sep 17 00:00:00 2001 From: kub938 Date: Mon, 29 Dec 2025 18:22:26 +0900 Subject: [PATCH 1/4] test: frontend ci test --- frontend/src/components/Button.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/components/Button.tsx b/frontend/src/components/Button.tsx index 35ec084f..d0591299 100644 --- a/frontend/src/components/Button.tsx +++ b/frontend/src/components/Button.tsx @@ -3,6 +3,7 @@ import { Slot } from "@radix-ui/react-slot"; import { cva, type VariantProps } from "class-variance-authority"; import { cn } from "@/lib/utils"; +import CompanyCard from "./CompanyCard"; const buttonVariants = cva( "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 aria-invalid:border-destructive cursor-pointer", From 508f8eb68a762e572872a7bff36f241dde5db58f Mon Sep 17 00:00:00 2001 From: kub938 Date: Mon, 29 Dec 2025 18:27:54 +0900 Subject: [PATCH 2/4] =?UTF-8?q?chore:=20=ED=8F=B4=EB=8D=94=EB=AA=85=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/{wordflows => workflows}/frontend-ci.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/{wordflows => workflows}/frontend-ci.yml (100%) diff --git a/.github/wordflows/frontend-ci.yml b/.github/workflows/frontend-ci.yml similarity index 100% rename from .github/wordflows/frontend-ci.yml rename to .github/workflows/frontend-ci.yml From 4ad391badaa470cecf8f61002d5aa22f709f05fa Mon Sep 17 00:00:00 2001 From: kub938 Date: Mon, 29 Dec 2025 18:40:28 +0900 Subject: [PATCH 3/4] =?UTF-8?q?fix:=20npm=20=EA=B2=BD=EB=A1=9C=20=EC=84=A4?= =?UTF-8?q?=EC=A0=95=20=EB=B0=8F=20=EB=B2=84=EC=A0=84=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/frontend-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/frontend-ci.yml b/.github/workflows/frontend-ci.yml index 78fca085..19802002 100644 --- a/.github/workflows/frontend-ci.yml +++ b/.github/workflows/frontend-ci.yml @@ -19,8 +19,9 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 24.9.0 cache: "npm" + cache-dependency-path: frontend/package-lock.json - name: Install dependencies run: npm ci From 303119177ebd7f0297b963addae86b5441a62ace Mon Sep 17 00:00:00 2001 From: kub938 Date: Mon, 29 Dec 2025 18:43:51 +0900 Subject: [PATCH 4/4] =?UTF-8?q?test:=20build=20=EC=97=90=EB=9F=AC=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0=20=ED=9B=84=20=EB=8B=A4=EC=8B=9C=20=ED=85=8C?= =?UTF-8?q?=EC=8A=A4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/Button.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/components/Button.tsx b/frontend/src/components/Button.tsx index d0591299..35ec084f 100644 --- a/frontend/src/components/Button.tsx +++ b/frontend/src/components/Button.tsx @@ -3,7 +3,6 @@ import { Slot } from "@radix-ui/react-slot"; import { cva, type VariantProps } from "class-variance-authority"; import { cn } from "@/lib/utils"; -import CompanyCard from "./CompanyCard"; const buttonVariants = cva( "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 aria-invalid:border-destructive cursor-pointer",