Skip to content

Commit

Permalink
chore(ci): upgrade to node 22
Browse files Browse the repository at this point in the history
  • Loading branch information
logaretm committed Oct 26, 2024
1 parent c02c549 commit 52e18ad
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
# Below is the definition of your job to build and test your app, you can rename and customize it as you want.
test:
docker:
- image: cimg/node:19.7
- image: cimg/node:22.10
steps:
# Checkout the code as the first step.
- checkout
Expand All @@ -17,16 +17,17 @@ jobs:
- run:
name: Install pnpm package manager
command: |
corepack enable
corepack prepare pnpm@latest-8 --activate
corepack enable --install-directory ~/bin
corepack prepare pnpm@latest-9 --activate
pnpm config set store-dir .pnpm-store
- run:
name: Install dependencies
command: pnpm install
- save_cache:
name: Save pnpm Package Cache
key: pnpm-packages-{{ checksum "pnpm-lock.yaml" }}
paths:
- node_modules
- .pnpm-store
- run:
name: Build
command: pnpm build
Expand Down

0 comments on commit 52e18ad

Please sign in to comment.