From f3238e7b52901616aa13911043821195c821710e Mon Sep 17 00:00:00 2001 From: HejdaJakub Date: Thu, 9 Mar 2023 12:23:06 +0100 Subject: [PATCH] ci: fixed npm install in release workflow * To the release workflow was added parameter --legacy-peer-deps to the npm ci. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index df5053017..e5592cf93 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: with: node-version: 16 - name: Install dependencies - run: npm ci + run: npm ci --legacy-peer-deps - name: Release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}