-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #77 from rajnishdargan/release-8.0.0
Issue #IQ-694 fix: Fix Linux Image Deprecations
- Loading branch information
Showing
1 changed file
with
10 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" }} | ||
|
@@ -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 | ||
|