From b277d00d8e83e797d0961da825b3b363349af607 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Jane=C4=8Dek?= Date: Sun, 17 Jul 2022 15:44:50 +0200 Subject: [PATCH] ci(): use next-gen convenience image; update npm version without sudo --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5ee55a94..326aa538 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: