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: Merging release-8.0.0_v16 to release-8.0.0 branch #81

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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