Skip to content

Commit

Permalink
Merge pull request #1117 from wodCZ/feature/circleci-convenience-image
Browse files Browse the repository at this point in the history
ci(): use next-gen convenience image; update npm version without sudo
  • Loading branch information
kamilmysliwiec committed Jul 18, 2022
2 parents afa180f + 1e579f3 commit 3d32b34
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Expand Up @@ -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:
Expand All @@ -43,7 +43,7 @@ jobs:
unit_tests:
working_directory: ~/nest
docker:
- image: circleci/node:17
- image: cimg/node:17.9
steps:
- checkout
- *restore-cache
Expand Down

0 comments on commit 3d32b34

Please sign in to comment.