From 02636a26efdefd301a6ef620cb3b9ac952e8dcb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Jane=C4=8Dek?= Date: Sun, 17 Jul 2022 15:46:16 +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 3bfc034c..9181f5b6 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: @@ -38,7 +38,7 @@ jobs: test: working_directory: ~/nest docker: - - image: circleci/node:17 + - image: cimg/node:17.9 steps: - checkout - *restore-cache