From a45fae02874fe315ea899dc7aeb1dc4ef779808f Mon Sep 17 00:00:00 2001 From: Story Crater Bot <19826264+Riotpiaole@users.noreply.github.com> Date: Sun, 6 Sep 2026 23:48:22 -0700 Subject: [PATCH] fix: add --legacy-peer-deps to npm install lucide-react@0.344.0 requires react@^16.5.1 || ^17.0.0 || ^18.0.0 Project uses react@19.2.7, which is incompatible at the peer level. Use --legacy-peer-deps to allow the installation to proceed. --- .gitea/workflows/build-push.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build-push.yml b/.gitea/workflows/build-push.yml index faf4535..d4b9226 100644 --- a/.gitea/workflows/build-push.yml +++ b/.gitea/workflows/build-push.yml @@ -22,7 +22,7 @@ jobs: uses: actions/checkout@v4 - name: Install dependencies - run: npm ci + run: npm install --legacy-peer-deps - name: Run tests run: npm test -- --run 2>&1 || echo "Tests completed"