From 64f3d27a4326b8f44be247f75acbaa380c847a65 Mon Sep 17 00:00:00 2001 From: "aayush@nexleaf.org" Date: Sun, 7 Jan 2024 12:11:46 -0800 Subject: [PATCH] use --legacy-peer-deps --- .github/workflows/firebase-hosting-merge.yml | 2 +- .github/workflows/firebase-hosting-pull-request.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/firebase-hosting-merge.yml b/.github/workflows/firebase-hosting-merge.yml index 2d5c913..48bda8d 100644 --- a/.github/workflows/firebase-hosting-merge.yml +++ b/.github/workflows/firebase-hosting-merge.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/setup-node@v3 with: node-version-file: '.nvmrc' - - run: npm ci && npm run build + - run: npm ci --legacy-peer-deps && npm run build - uses: FirebaseExtended/action-hosting-deploy@v0 with: repoToken: '${{ secrets.GITHUB_TOKEN }}' diff --git a/.github/workflows/firebase-hosting-pull-request.yml b/.github/workflows/firebase-hosting-pull-request.yml index 4da564f..010d994 100644 --- a/.github/workflows/firebase-hosting-pull-request.yml +++ b/.github/workflows/firebase-hosting-pull-request.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/setup-node@v3 with: node-version-file: '.nvmrc' - - run: npm ci && npm run build + - run: npm ci --legacy-peer-deps && npm run build - uses: FirebaseExtended/action-hosting-deploy@v0 with: repoToken: '${{ secrets.GITHUB_TOKEN }}'