From 04af38e1696c478bb1d53eabe5a7e8084b851190 Mon Sep 17 00:00:00 2001 From: faris Aljohari <83524184+farisaljohari@users.noreply.github.com> Date: Mon, 14 Jul 2025 00:32:57 -0600 Subject: [PATCH] Add step to install Node.js dependencies in production workflow --- .github/workflows/production.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml index 39f64d4c..2e281ed8 100644 --- a/.github/workflows/production.yml +++ b/.github/workflows/production.yml @@ -21,6 +21,9 @@ jobs: with: node-version: "20" + - name: 📦 Install Node.js Dependencies (CDK + TypeScript) + run: npm install + - name: 🐳 Set up Docker Buildx uses: docker/setup-buildx-action@v3