Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #IQ-687 feat: Angular migration from 15 to 16 version #79

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