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 f52c150
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 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 @@ -18,15 +18,16 @@ jobs:
name: Install pnpm package manager
command: |
corepack enable
corepack prepare pnpm@latest-8 --activate
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 f52c150

Please sign in to comment.