diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bd46994..ec64786 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,13 +31,13 @@ jobs: # Install root dependencies first - name: Install root dependencies - run: npm ci + run: npm ci --ignore-scripts env: HUSKY: 0 # Step 3: Install backend dependencies - name: Install backend dependencies - run: npm ci + run: npm ci --ignore-scripts working-directory: ./api # Step 4: Build the backend if necessary (you can remove this if not needed) @@ -71,13 +71,13 @@ jobs: # Install root dependencies first - name: Install root dependencies - run: npm ci + run: npm ci --ignore-scripts env: HUSKY: 0 # Step 3: Install frontend dependencies - name: Install frontend dependencies - run: npm ci + run: npm ci --ignore-scripts working-directory: ./app # Step 4: Run frontend tests