From c233bf083b1162226235f11f73b826f4810204f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=20Erik=20St=C3=B8wer?= Date: Fri, 22 Dec 2023 11:57:57 +0100 Subject: [PATCH] Install dependencies with legacy-peer-deps --- .github/workflows/build_and_deploy.yml | 2 +- .github/workflows/pull_request_build_and_deploy.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_and_deploy.yml b/.github/workflows/build_and_deploy.yml index a0bc2fb69..f6b45db5a 100644 --- a/.github/workflows/build_and_deploy.yml +++ b/.github/workflows/build_and_deploy.yml @@ -28,7 +28,7 @@ jobs: name: List the state of node modules continue-on-error: true run: npm list - - run: npm ci + - run: npm ci --legacy-peer-deps - run: npm run check - run: npm run test -- --coverage - name: SonarQube Scan diff --git a/.github/workflows/pull_request_build_and_deploy.yml b/.github/workflows/pull_request_build_and_deploy.yml index 46e75a76a..589a04ec3 100644 --- a/.github/workflows/pull_request_build_and_deploy.yml +++ b/.github/workflows/pull_request_build_and_deploy.yml @@ -27,7 +27,7 @@ jobs: name: List the state of node modules continue-on-error: true run: npm list - - run: npm ci + - run: npm ci --legacy-peer-deps - run: npm run check - run: npm run test -- --coverage - name: SonarQube Scan