Skip to content

Commit

Permalink
Merge pull request #79 from rajnishdargan/release-8.0.0_v15
Browse files Browse the repository at this point in the history
Issue #IQ-687 feat: Angular migration from 15 to 16 version
  • Loading branch information
sajeshkayyath authored Mar 18, 2024
2 parents 0b83f7c + 3c61826 commit 5604f27
Show file tree
Hide file tree
Showing 12 changed files with 45,465 additions and 28,979 deletions.
25 changes: 11 additions & 14 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ orbs:
jobs:
build:
docker:
- image: cimg/node:14.21.3-browsers
- image: cimg/node:18.19.1-browsers
steps:
- browser-tools/install-chrome
- run:
Expand All @@ -13,21 +13,18 @@ jobs:
- run:
name: Check Node version
command: node -v
- run:
name: Installing angular cli
command: 'npm install -g @angular/cli@15 --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
Loading

0 comments on commit 5604f27

Please sign in to comment.