From 47acd2759d9387190723256dbcfe61c5fc4f22b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Jane=C4=8Dek?= Date: Sun, 17 Jul 2022 15:31:56 +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 d19f0b56b..4f83355c8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -21,12 +21,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: @@ -43,7 +43,7 @@ jobs: unit_tests: working_directory: ~/nest docker: - - image: circleci/node:17 + - image: cimg/node:17.9 steps: - checkout - *restore-cache