From bd223490f91d78f16cb55b67cbd6a58a18062b56 Mon Sep 17 00:00:00 2001 From: Anmol Sharma Date: Fri, 30 Aug 2024 12:07:17 +0530 Subject: [PATCH] chore: remove --legacy-peer-deps option from CI Signed-off-by: Anmol Sharma --- .github/workflows/actions-lint.yml | 2 +- .github/workflows/actions-test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/actions-lint.yml b/.github/workflows/actions-lint.yml index 57299d2..2aff4de 100644 --- a/.github/workflows/actions-lint.yml +++ b/.github/workflows/actions-lint.yml @@ -30,7 +30,7 @@ jobs: key: node-modules-${{ hashFiles('package-lock.json') }} - name: Install Dependencies if: steps.cache-node-modules.outputs.cache-hit != 'true' - run: npm install --legacy-peer-deps + run: npm install - name: Run prettier run: npm run format:check - name: Run eslint diff --git a/.github/workflows/actions-test.yml b/.github/workflows/actions-test.yml index 11a3f58..f7e9b38 100644 --- a/.github/workflows/actions-test.yml +++ b/.github/workflows/actions-test.yml @@ -30,6 +30,6 @@ jobs: key: node-modules-${{ hashFiles('package-lock.json') }} - name: Install Dependencies if: steps.cache-node-modules.outputs.cache-hit != 'true' - run: npm install --legacy-peer-deps + run: npm install - name: Run unit tests with coverage run: npm run test \ No newline at end of file