Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ executors:
main-executor:
working_directory: ~/react-widgets
docker:
- image: circleci/node:fermium
- image: cimg/node:22.22
# environment variables for all commands executed in the main-executor
environment:
AWS_BUCKET: code.s4d.io
Expand All @@ -29,8 +29,8 @@ commands:
steps:
- restore_cache:
keys:
- node-modules-cache-node-fermium-npm-6-{{ .Environment.CACHE_VERSION }}-{{ checksum "package-lock.json" }}
- node-modules-cache-node-fermium-npm-6-{{ .Environment.CACHE_VERSION }}-
- node-modules-cache-node-22-npm-10-{{ .Environment.CACHE_VERSION }}-{{ checksum "package-lock.json" }}
- node-modules-cache-node-22-npm-10-{{ .Environment.CACHE_VERSION }}-
aws-cloudfront-invalidation:
parameters:
cloudfront-id:
Expand All @@ -52,10 +52,10 @@ jobs:
command: npm cache clean --force
- run:
name: "Install dependencies"
command: npm ci
command: npm install --legacy-peer-deps
# Cache node_modules across different internal jobs in the workflow and across different circleci runs
- save_cache:
key: node-modules-cache-node-fermium-npm-6-{{ .Environment.CACHE_VERSION }}-{{ checksum "package-lock.json" }}
key: node-modules-cache-node-22-npm-10-{{ .Environment.CACHE_VERSION }}-{{ checksum "package-lock.json" }}
paths:
- node_modules
- run:
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lts/fermium
22
Loading