From a966470826e55628d962d93e9e37fe7a05563e94 Mon Sep 17 00:00:00 2001 From: salah eddine bendyab Date: Fri, 2 Aug 2024 10:53:55 +0100 Subject: [PATCH] chore: Install ncc for code compilation workflow --- .github/workflows/compile_code_and_modules.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/compile_code_and_modules.yml b/.github/workflows/compile_code_and_modules.yml index 4895820..4143e6f 100644 --- a/.github/workflows/compile_code_and_modules.yml +++ b/.github/workflows/compile_code_and_modules.yml @@ -17,6 +17,9 @@ jobs: - name: Install dependencies run: npm install + - name: Install ncc + run: npm install -g @vercel/ncc + - name: Build run: npm run build