diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a755313..a81c8aa 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -24,6 +24,11 @@ jobs: - name: Install dependencies run: npm install + - name: Clean and install dependencies + run: | + rm -rf node_modules package-lock.json + npm install --legacy-peer-deps # Clean install dependencies + - name: Build project run: npm run build