Skip to content

Commit

Permalink
chore: remove --legacy-peer-deps option from CI
Browse files Browse the repository at this point in the history
Signed-off-by: Anmol Sharma <anmolsharma0234@gmail.com>
  • Loading branch information
theanmolsharma committed Aug 30, 2024
1 parent 233037e commit bd22349
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actions-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/actions-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit bd22349

Please sign in to comment.