Skip to content

Commit

Permalink
Issue #IQ-687 feat: fix circle-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
rajnishdargan committed Mar 15, 2024
1 parent 8630812 commit 3c61826
Showing 1 changed file with 10 additions and 13 deletions.
23 changes: 10 additions & 13 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,18 @@ jobs:
- run:
name: Check Node version
command: node -v
- run:
name: Installing angular cli
command: 'npm install -g @angular/cli@16 --no-progress'
- restore_cache:
keys:
- node_modules_cache_{{ checksum "package-lock.json" }}
- run:
name: Install QuML Library dependencies
command: cd projects/quml-library && npm install --no-progress
# - run:
# name: Installing angular cli
# command: 'npm install -g @angular/cli@16 --no-progress'
# - restore_cache:
# keys:
# - node_modules_cache_{{ checksum "package-lock.json" }}
# - run:
# name: Install QuML Library dependencies
# command: cd projects/quml-library && npm install --no-progress
- run:
name: Install project dependencies
command: |
if [ ! -d "node_modules" ]; then
npm i -f
fi
command: npm install --no-progress
- save_cache:
key: node_modules_cache_{{ checksum "package-lock.json" }}
paths:
Expand Down

0 comments on commit 3c61826

Please sign in to comment.