From dbb60e56994b73cb426bf116fa43e2f057cf51b3 Mon Sep 17 00:00:00 2001 From: Fellan-91 Date: Fri, 26 Jul 2024 12:48:37 +0300 Subject: [PATCH] updated actions: added a legacy-peer-deps flag when installing packages --- .github/setup-node/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/setup-node/action.yml b/.github/setup-node/action.yml index 1804b489..e039e702 100644 --- a/.github/setup-node/action.yml +++ b/.github/setup-node/action.yml @@ -31,7 +31,7 @@ runs: - name: Install npm dependencies if: ${{ steps.cache-node_modules.outputs.cache-hit != 'true' }} - run: npm ci + run: npm ci --legacy-peer-deps shell: bash # On cache hit, we run the post-install script to match the native `npm ci` behavior.