Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[All] Add Support for Node 22 #3846

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
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
14 changes: 11 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ commands:
description: Force usage of correct node version on the executor machine
steps:
- run:
name: Use Node 20
name: Use Node 22
command: |
nvm install 20.13.1
nvm alias default 20.13.1
nvm install 22.13.1
nvm alias default 22.13.1
nvm use default
restore_dependency_cache:
steps:
Expand Down Expand Up @@ -180,6 +180,11 @@ jobs:
steps:
- run_test:
package: bitcore-client
bitcore-tss:
executor: main
steps:
- run_test:
package: bitcore-tss

workflows:
version: 2
Expand Down Expand Up @@ -219,3 +224,6 @@ workflows:
- bitcore-client:
requires:
- build
- bitcore-tss:
requires:
- build
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@
"ci:bitcore-mnemonic": "./ci.sh 'npm run test:bitcore-mnemonic'",
"test:bitcore-client": "cd ./packages/bitcore-client && npm run test",
"ci:bitcore-client": "./ci.sh 'npm run test:bitcore-client'",
"test:bitcore-tss": "cd ./packages/bitcore-tss && npm run test",
"ci:bitcore-tss": "./ci.sh 'npm run test:bitcore-tss'",
"lerna:ci:all": "npx lerna run test:ci --concurrency 1 --stream",
"lerna:ci:unit": "npx run test:ci:unit --concurrency 1 --stream",
"lerna:ci:integration": "npx run test:ci:integration --concurrency 1 --stream",
Expand Down
Loading