From a5342eba4b06a213e71770dec2ebc048249775d0 Mon Sep 17 00:00:00 2001 From: Antigravity Date: Thu, 28 May 2026 21:17:05 +0000 Subject: [PATCH] fix(ci): use --legacy-peer-deps during npm ci in all workflows --- .gitea/workflows/ci.yaml | 2 +- .github/workflows/ci.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 976a962..e73920f 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -22,7 +22,7 @@ jobs: uses: actions/checkout@v4 - name: Install dependencies - run: npm ci + run: npm ci --legacy-peer-deps - name: Generate Prisma client run: npx prisma generate diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4bf7da3..c9bce17 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -35,7 +35,7 @@ jobs: ${{ runner.os }}-node- - name: Install dependencies - run: npm ci + run: npm ci --legacy-peer-deps - name: Generate Prisma client run: npx prisma generate