Skip to content

Commit

Permalink
Issue #IQ-694 fix: Fix Linux Image Deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
rajnishdargan committed Mar 14, 2024
1 parent f13b8ca commit d85e015
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,20 @@ jobs:
- run:
name: Installing angular cli
command: 'npm install -g @angular/cli@15 --no-progress'
#~ - restore_cache:
#~ key: dependency-cache-{{ checksum "package.json" }}
- run:
name: Installing npm deps
command: 'npm install --no-progress'
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths: ./node_modules
- run:
name: ng lint and building
command: 'mkdir -p /tmp/logs && npm run build-lib:prod | tee /tmp/logs/build.log'
- run:
name: Executing test cases
command: npm run test-coverage
command: 'npm run test-coverage | tee /tmp/logs/test_cases.log'
- run:
name: Install sonar scanner
command: npm install -g sonarqube-scanner
Expand Down

0 comments on commit d85e015

Please sign in to comment.