Skip to content

Commit

Permalink
Merge pull request #1848 from fossamagna/use-nodejs-18-on-ci
Browse files Browse the repository at this point in the history
ci: use nodejs v18
  • Loading branch information
kamilmysliwiec committed Dec 27, 2022
2 parents bfd3d8b + 6062917 commit 043724b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ jobs:
build:
working_directory: ~/nest
docker:
- image: cimg/node:17.9
- image: cimg/node:18.12
steps:
- checkout
- run:
name: Update NPM version
command: npm install -g npm@latest
command: sudo 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: cimg/node:17.9
- image: cimg/node:18.12
steps:
- checkout
- *restore-cache
Expand Down

0 comments on commit 043724b

Please sign in to comment.