From eca525078717ec9efaf5d4249260fc7de76f81a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Jane=C4=8Dek?= Date: Sun, 17 Jul 2022 15:54:18 +0200 Subject: [PATCH] ci(): use next-gen convenience image; update npm version without sudo --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 76a789e9..c8d1c2d3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -17,12 +17,12 @@ jobs: build: working_directory: ~/nest docker: - - image: circleci/node:17 + - image: cimg/node:17.9 steps: - checkout - run: name: Update NPM version - command: 'sudo npm install -g npm@latest' + command: npm install -g npm@latest - restore_cache: key: dependency-cache-{{ checksum "package.json" }} - run: @@ -39,7 +39,7 @@ jobs: integration_tests: working_directory: ~/nest docker: - - image: circleci/node:17 + - image: cimg/node:17.9 steps: - checkout - *restore-cache