Skip to content

Commit

Permalink
ci: update executor to node 18.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amille44420 committed Jun 9, 2022
1 parent 759f01f commit 87b2d65
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2.1
executors:
node-step:
docker:
- image: circleci/node:16.13.1
- image: cimg/node:18.3.0

jobs:
deps-install:
Expand All @@ -12,16 +12,16 @@ jobs:
- checkout
- restore_cache:
keys:
- yarn-install-node16-{{ checksum "package.json" }}-{{ checksum "yarn.lock" }}
- yarn-install-node16-{{ checksum "package.json" }}
- yarn-install-node16
- yarn-install-node18-{{ checksum "package.json" }}-{{ checksum "yarn.lock" }}
- yarn-install-node18-{{ checksum "package.json" }}
- yarn-install-node18
paths:
- node_modules
- ~/.cache/yarn
- run:
command: yarn install --frozen-lockfile
- save_cache:
key: yarn-install-node16-{{ checksum "package.json" }}-{{ checksum "yarn.lock" }}
key: yarn-install-node18-{{ checksum "package.json" }}-{{ checksum "yarn.lock" }}
paths:
- node_modules
- ~/.cache/yarn
Expand Down

0 comments on commit 87b2d65

Please sign in to comment.