Skip to content

Commit

Permalink
Replace with npm install
Browse files Browse the repository at this point in the history
  • Loading branch information
bhav-khurana committed Dec 8, 2023
1 parent c4e5b26 commit 58ba0a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull-requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Install dependencies
continue-on-error: true
run: npm ci
run: npm install --legacy-peer-deps

- name: Run linting check
run: npm run lint:check
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- if: ${{ steps.cache-npm.outputs.cache-hit != 'true' }}
name: List the state of node modules
continue-on-error: true
run: npm ci
run: npm install --legacy-peer-deps
- run: npm run test -- --watchAll=false --coverage
- name: Present and upload coverage to Codecov as ${{env.CODECOV_UNIQUE_NAME}}
uses: codecov/codecov-action@v3
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
name: Install dependencies
continue-on-error: true
run: npm ci
run: npm install --legacy-peer-deps

- name: Install TypeScript Globally and add GraphQL tag
run: yarn global add typescript
Expand Down

0 comments on commit 58ba0a1

Please sign in to comment.