Skip to content

Commit

Permalink
Merge pull request #77 from rajnishdargan/release-8.0.0
Browse files Browse the repository at this point in the history
Issue #IQ-694 fix: Fix Linux Image Deprecations
  • Loading branch information
sajeshkayyath authored Mar 15, 2024
2 parents fe219ce + 6f86187 commit 0b83f7c
Showing 1 changed file with 10 additions and 16 deletions.
26 changes: 10 additions & 16 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
version: 2.1
orbs:
browser-tools: circleci/[email protected]
jobs:
build:
machine:
image: ubuntu-2004:202010-01
docker:
- image: cimg/node:14.21.3-browsers
steps:
- checkout
- browser-tools/install-chrome
- run:
name: Install Node.js v14 with build in nvm tool
command: |
export NVM_DIR="/opt/circleci/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
nvm install v14 && nvm use 14 && nvm alias default 14
node -v
command: google-chrome --version
- checkout
- 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" }}
Expand All @@ -34,13 +35,6 @@ jobs:
- run:
name: Executing test cases
command: npm run test-lib-ci
- run:
name: Install Node.js v16 with build in nvm tool
command: |
export NVM_DIR="/opt/circleci/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
nvm install v16 && nvm use 16 && nvm alias default 16
node -v
- run:
name: Install sonar scanner
command: npm install -g sonarqube-scanner
Expand Down

0 comments on commit 0b83f7c

Please sign in to comment.