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-694 fix: Fix Linux Image Deprecations #77

Merged
Merged
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
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/browser-tools@1.4.8
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