From 8d161589a2abdc5765967e835e75573c030ac3ab Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Sun, 2 Nov 2025 00:16:37 -0600 Subject: [PATCH] fix: use npm install --ignore-scripts in CI to avoid permission issues --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 85d1f2b..6a085a4 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -57,7 +57,7 @@ jobs: run: nix develop --command bash -c "cd backend && ruff format --check app/" - name: Frontend - Install deps - run: nix develop --command bash -c "cd frontend && npm install" + run: nix develop --command bash -c "cd frontend && npm install --ignore-scripts" - name: Frontend - ESLint run: nix develop --command bash -c "cd frontend && npm run lint" @@ -94,7 +94,7 @@ jobs: " - name: Frontend - Install deps - run: nix develop --command bash -c "cd frontend && npm install" + run: nix develop --command bash -c "cd frontend && npm install --ignore-scripts" - name: Frontend unit tests run: nix develop --command bash -c "cd frontend && npm run test:coverage"