From 295952d733c1f9b504a7ac4168ee508eb4a8c651 Mon Sep 17 00:00:00 2001 From: spexzee Date: Sat, 27 Dec 2025 18:05:55 +0530 Subject: [PATCH 1/4] build failed --- src/App.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/App.tsx b/src/App.tsx index ac4efab..03b921d 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -8,6 +8,9 @@ import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; const queryClient = new QueryClient() const App: React.FC = () => { + // This will cause a TypeScript build error for testing CI + nonExistentFunction(); + return ( From f3632262c181c14bdb7dbbc137ac825c0c2342b4 Mon Sep 17 00:00:00 2001 From: spexzee Date: Sat, 27 Dec 2025 18:08:18 +0530 Subject: [PATCH 2/4] build fixed --- src/App.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 03b921d..ac4efab 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -8,9 +8,6 @@ import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; const queryClient = new QueryClient() const App: React.FC = () => { - // This will cause a TypeScript build error for testing CI - nonExistentFunction(); - return ( From 6cc06ec9ae9e23bb1ee54bc2648f289fe5d1c634 Mon Sep 17 00:00:00 2001 From: spexzee Date: Sat, 27 Dec 2025 18:10:45 +0530 Subject: [PATCH 3/4] updated node --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cc6018e..c821039 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:18-alpine +FROM node:20.19.0 WORKDIR /app From 82e530666d4b6b1999e23726e02a7d60f211a532 Mon Sep 17 00:00:00 2001 From: spexzee Date: Sat, 27 Dec 2025 18:17:11 +0530 Subject: [PATCH 4/4] fix: switch back to npm install for Docker compatibility --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c821039..1869a49 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM node:20.19.0 WORKDIR /app COPY package*.json ./ -RUN npm ci +RUN npm install COPY . .