From 5020487e1b4ce9866ea2b77b6e3e9fa3b6167a7c Mon Sep 17 00:00:00 2001 From: MacRimi <123239993+MacRimi@users.noreply.github.com> Date: Thu, 13 Feb 2025 21:11:08 +0100 Subject: [PATCH] Update nextjs.yml --- .github/workflows/nextjs.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nextjs.yml b/.github/workflows/nextjs.yml index b8a5a67..609e717 100644 --- a/.github/workflows/nextjs.yml +++ b/.github/workflows/nextjs.yml @@ -37,11 +37,12 @@ jobs: npm list next-themes || npm install next-themes npm list @radix-ui/react-accordion || npm install @radix-ui/react-accordion npm list @radix-ui/react-alert-dialog || npm install @radix-ui/react-alert-dialog + npm list @radix-ui/react-aspect-ratio || npm install @radix-ui/react-aspect-ratio - name: Verify dependencies installation run: | cd web - if [ -d "node_modules/next-themes" ] && [ -d "node_modules/@radix-ui/react-accordion" ] && [ -d "node_modules/@radix-ui/react-alert-dialog" ]; then + if [ -d "node_modules/next-themes" ] && [ -d "node_modules/@radix-ui/react-accordion" ] && [ -d "node_modules/@radix-ui/react-alert-dialog" ] && [ -d "node_modules/@radix-ui/react-aspect-ratio" ]; then echo "✅ All required dependencies are installed!" else echo "❌ ERROR: Some dependencies are missing!"