From c2e955b4fe4c17cd6eb4ce213f1dbcd7fc09e2f4 Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Thu, 22 Jan 2026 17:10:24 -0500 Subject: [PATCH 01/27] LI-116181 bump up form-data library to v3.0.4 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 25a08ab..ea0a7fa 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "A library to manage users, transfer methods and payments through the Hyperwallet API", "main": "lib/index.js", "dependencies": { - "form-data": "^3.0.0", + "form-data": "^3.0.4", "node-jose": "^2.2.0", "object-assign": "^4.1.0", "superagent": "^4.0.0", From f416c7841231f61ca5a29258930c125276960365 Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Thu, 22 Jan 2026 17:17:04 -0500 Subject: [PATCH 02/27] LI-116181 bump up "mocha" to "^10.4.0", --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index ea0a7fa..7625075 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,7 @@ }, "homepage": "http://hyperwallet.github.io/node-sdk", "devDependencies": { - "babel-eslint": "^8.2.6", + "babel-eslint": "^10.1.0", "babel-preset-es2015": "^6.9.0", "babel-preset-stage-0": "^6.5.0", "babel-register": "^6.9.0", @@ -56,7 +56,7 @@ "eslint-config-airbnb-base": "^13.2.0", "eslint-plugin-import": "^2.17.2", "gh-pages": "^6.1.1", - "mocha": "^5.2.0", + "mocha": "^10.4.0", "nock": "^10.0.4", "nyc": "^15.0.0", "publish-please": "^5.4.3", From 0091c8314e8ffac04c126c25544bf9715bf07ec8 Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Thu, 22 Jan 2026 18:06:40 -0500 Subject: [PATCH 03/27] LI-116181 bump min nodejs version from 8.x to 10.x --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ac248f0..f1fb05b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [8.x ,14.x ,16.x] + node-version: [10.x ,14.x ,16.x] steps: - uses: actions/checkout@v3 @@ -36,7 +36,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [ 8.x ] + node-version: [ 10.x ] steps: - uses: actions/checkout@v3 From 83484c3d54efba869b8a391e1b3b06e83a2652eb Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Thu, 22 Jan 2026 18:13:17 -0500 Subject: [PATCH 04/27] LI-116181 bump min nodejs version from 8.x to 10.x --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f1fb05b..da91030 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [10.x ,14.x ,16.x] + node-version: [14.x ,16.x] steps: - uses: actions/checkout@v3 @@ -36,7 +36,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [ 10.x ] + node-version: [ 14.x ] steps: - uses: actions/checkout@v3 From 52edd205923e0415b57f17273c43f69fa3bdfd70 Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Thu, 22 Jan 2026 18:23:34 -0500 Subject: [PATCH 05/27] LI-116181 fix JavaScript heap out of memory --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index da91030..c51b3a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,6 +21,8 @@ jobs: steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} + env: + NODE_OPTIONS: "--max_old_space_size=4096" uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} From 6bcef4cd389c4bd85422057a71ee50fbe30bbcee Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Thu, 22 Jan 2026 18:27:13 -0500 Subject: [PATCH 06/27] LI-116181 fix JavaScript heap out of memory --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c51b3a2..cfc0fa8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [14.x ,16.x] + node-version: [14.x ,18.x] steps: - uses: actions/checkout@v3 From d8530a31e61e004e0fe99d740373891e1e06e49c Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Thu, 22 Jan 2026 18:30:48 -0500 Subject: [PATCH 07/27] LI-116181 fix JavaScript heap out of memory --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cfc0fa8..6a4a5fc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,8 +21,6 @@ jobs: steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} - env: - NODE_OPTIONS: "--max_old_space_size=4096" uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} @@ -30,7 +28,9 @@ jobs: - run: npm install - run: npm run build --if-present - - run: npm run test + - run: | + export NODE_OPTIONS="--max_old_space_size=4096" + npm run test code-coverage: runs-on: ubuntu-latest From 861c739d69726daff452d3032c62c8184c01945d Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Thu, 22 Jan 2026 18:35:11 -0500 Subject: [PATCH 08/27] LI-116181 fix JavaScript heap out of memory --- .github/workflows/ci.yml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6a4a5fc..fe81eb9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,11 +25,12 @@ jobs: with: node-version: ${{ matrix.node-version }} cache: 'npm' + env: + NODE_OPTIONS: "--max_old_space_size=4096" - - run: npm install - - run: npm run build --if-present - run: | - export NODE_OPTIONS="--max_old_space_size=4096" + npm install + npm run build --if-present npm run test code-coverage: @@ -47,10 +48,13 @@ jobs: with: node-version: ${{ matrix.node-version }} cache: 'npm' + env: + NODE_OPTIONS: "--max_old_space_size=4096" - - run: npm install - - run: npm run build --if-present - - run: npm run test-coverage + - run: | + npm install + npm run build --if-present + npm run test-coverage - name: Coveralls uses: coverallsapp/github-action@master From 351a4f00a794ada6b785c64d15ff65a5acd3dc19 Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Fri, 23 Jan 2026 12:40:53 -0500 Subject: [PATCH 09/27] LI-116181 fix JavaScript heap out of memory --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fe81eb9..dde1827 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,6 +12,8 @@ on: jobs: test: runs-on: ubuntu-latest + env: + NODE_OPTIONS: "--max_old_space_size=4096" strategy: fail-fast: false @@ -25,8 +27,7 @@ jobs: with: node-version: ${{ matrix.node-version }} cache: 'npm' - env: - NODE_OPTIONS: "--max_old_space_size=4096" + - run: | npm install @@ -35,6 +36,8 @@ jobs: code-coverage: runs-on: ubuntu-latest + env: + NODE_OPTIONS: "--max_old_space_size=4096" strategy: fail-fast: false From 2ca6ffa5f5bfc1b2963a8311bfe83444a3636428 Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Fri, 23 Jan 2026 16:55:38 -0500 Subject: [PATCH 10/27] LI-116181 fix JavaScript heap out of memory --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dde1827..d428557 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: test: runs-on: ubuntu-latest env: - NODE_OPTIONS: "--max_old_space_size=4096" + NODE_OPTIONS: " --trace-gc --trace-gc-verbose --max-old-space-size=4096" strategy: fail-fast: false @@ -33,11 +33,13 @@ jobs: npm install npm run build --if-present npm run test + env: + NODE_OPTIONS: " --trace-gc --trace-gc-verbose --max-old-space-size=4096" code-coverage: runs-on: ubuntu-latest env: - NODE_OPTIONS: "--max_old_space_size=4096" + NODE_OPTIONS: " --trace-gc --trace-gc-verbose --max-old-space-size=4096" strategy: fail-fast: false @@ -51,8 +53,6 @@ jobs: with: node-version: ${{ matrix.node-version }} cache: 'npm' - env: - NODE_OPTIONS: "--max_old_space_size=4096" - run: | npm install From 6a9f107c185258b37aa70e2e33d6fcb74843bd5e Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Fri, 23 Jan 2026 16:59:18 -0500 Subject: [PATCH 11/27] LI-116181 fix JavaScript heap out of memory --- .github/workflows/ci.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d428557..8cef7ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,9 +12,6 @@ on: jobs: test: runs-on: ubuntu-latest - env: - NODE_OPTIONS: " --trace-gc --trace-gc-verbose --max-old-space-size=4096" - strategy: fail-fast: false matrix: @@ -34,12 +31,10 @@ jobs: npm run build --if-present npm run test env: - NODE_OPTIONS: " --trace-gc --trace-gc-verbose --max-old-space-size=4096" + NODE_OPTIONS: "--max-old-space-size=4096" code-coverage: runs-on: ubuntu-latest - env: - NODE_OPTIONS: " --trace-gc --trace-gc-verbose --max-old-space-size=4096" strategy: fail-fast: false @@ -58,6 +53,7 @@ jobs: npm install npm run build --if-present npm run test-coverage + NODE_OPTIONS: "--max-old-space-size=4096" - name: Coveralls uses: coverallsapp/github-action@master From fc3a72e6dc1e87106f6844521cda59ca24db240c Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Fri, 23 Jan 2026 16:59:45 -0500 Subject: [PATCH 12/27] LI-116181 Add support to node v20 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8cef7ea..a19f5f0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [14.x ,18.x] + node-version: [14.x ,18.x, 20.x] steps: - uses: actions/checkout@v3 From a96e8b3880aa0c35eeed27fd3bd192b79af19e90 Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Fri, 23 Jan 2026 17:02:51 -0500 Subject: [PATCH 13/27] LI-116181 Add support to node v20 --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a19f5f0..ebd9e96 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,8 +30,8 @@ jobs: npm install npm run build --if-present npm run test - env: - NODE_OPTIONS: "--max-old-space-size=4096" + env: + NODE_OPTIONS: "--max-old-space-size=4096" code-coverage: runs-on: ubuntu-latest @@ -53,7 +53,8 @@ jobs: npm install npm run build --if-present npm run test-coverage - NODE_OPTIONS: "--max-old-space-size=4096" + env: + NODE_OPTIONS: "--max-old-space-size=4096" - name: Coveralls uses: coverallsapp/github-action@master From fc0183e4db99e92291bb47902338f59f83ab71f9 Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Fri, 23 Jan 2026 17:13:15 -0500 Subject: [PATCH 14/27] LI-116181 Add support to node v20 --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ebd9e96..ea6ccb0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,9 +18,9 @@ jobs: node-version: [14.x ,18.x, 20.x] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} cache: 'npm' @@ -42,9 +42,9 @@ jobs: node-version: [ 14.x ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} cache: 'npm' From 94fb22712bbed9cca67ad714d4c1be2439e7d1ef Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Fri, 23 Jan 2026 17:17:51 -0500 Subject: [PATCH 15/27] LI-116181 Add support to node v20 --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ea6ccb0..4e36965 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,6 +12,8 @@ on: jobs: test: runs-on: ubuntu-latest + env: + NODE_OPTIONS: --max-old-space-size=8192 strategy: fail-fast: false matrix: @@ -31,10 +33,12 @@ jobs: npm run build --if-present npm run test env: - NODE_OPTIONS: "--max-old-space-size=4096" + NODE_OPTIONS: --max-old-space-size=8192 code-coverage: runs-on: ubuntu-latest + env: + NODE_OPTIONS: --max-old-space-size=8192 strategy: fail-fast: false @@ -54,7 +58,7 @@ jobs: npm run build --if-present npm run test-coverage env: - NODE_OPTIONS: "--max-old-space-size=4096" + NODE_OPTIONS: --max-old-space-size=8192 - name: Coveralls uses: coverallsapp/github-action@master From 88931d9b9a24673a11c89c49b1e37fe53be98773 Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Fri, 23 Jan 2026 17:23:36 -0500 Subject: [PATCH 16/27] LI-116181 Limit mocha with 2 parallel jobs --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7625075..63ab006 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "docs": "esdoc -c ./.esdoc.json", "deploy-docs": "npm run docs && gh-pages -d docs", "test": "npm run lint && npm run test-unit", - "test-unit": "nyc --reporter lcov mocha --require babel-core/register test/**/*.js test/*.js", + "test-unit": "nyc --reporter lcov mocha --parallel --jobs 2 --require babel-core/register test/**/*.js test/*.js", "test-coverage": "nyc npm run test", "coveralls": "npm run test-coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js", "prepublish-prod": "npm test && npm run prod", From 2103a3bfbf876e917b8ffc5eda79554db7c6c20b Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Fri, 23 Jan 2026 17:27:12 -0500 Subject: [PATCH 17/27] LI-116181 Limit mocha with 1 parallel jobs --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 63ab006..6557d76 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "docs": "esdoc -c ./.esdoc.json", "deploy-docs": "npm run docs && gh-pages -d docs", "test": "npm run lint && npm run test-unit", - "test-unit": "nyc --reporter lcov mocha --parallel --jobs 2 --require babel-core/register test/**/*.js test/*.js", + "test-unit": "nyc --reporter lcov mocha --parallel --jobs 1 --require babel-core/register test/**/*.js test/*.js", "test-coverage": "nyc npm run test", "coveralls": "npm run test-coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js", "prepublish-prod": "npm test && npm run prod", From 90f4f66ab15ee59efa9c4640f1347c305caadece Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Fri, 23 Jan 2026 17:30:35 -0500 Subject: [PATCH 18/27] LI-116181 Limit mocha with 1 parallel jobs --- .github/workflows/ci.yml | 2 +- package.json | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4e36965..bfaab3b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: - run: | npm install npm run build --if-present - npm run test + npm run ci env: NODE_OPTIONS: --max-old-space-size=8192 diff --git a/package.json b/package.json index 6557d76..135a211 100644 --- a/package.json +++ b/package.json @@ -16,6 +16,8 @@ "docs": "esdoc -c ./.esdoc.json", "deploy-docs": "npm run docs && gh-pages -d docs", "test": "npm run lint && npm run test-unit", + "ci": "npm run lint && npm run test-unit-ci", + "test-unit-ci": "mocha --parallel --jobs 1 --require babel-core/register test/**/*.js test/*.js", "test-unit": "nyc --reporter lcov mocha --parallel --jobs 1 --require babel-core/register test/**/*.js test/*.js", "test-coverage": "nyc npm run test", "coveralls": "npm run test-coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js", From d78d26f274a44cf97420425c91f4bcc74c2e32f5 Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Fri, 23 Jan 2026 18:02:41 -0500 Subject: [PATCH 19/27] LI-116181 Limit mocha with 1 parallel jobs --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bfaab3b..7e4324a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,9 +20,9 @@ jobs: node-version: [14.x ,18.x, 20.x] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} cache: 'npm' From d852f5ac55e7d18858fa2eeb1cc4b4f68c0ba555 Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Fri, 23 Jan 2026 18:18:43 -0500 Subject: [PATCH 20/27] LI-116181 Limit mocha with 1 parallel jobs --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 135a211..8b1dbf0 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "deploy-docs": "npm run docs && gh-pages -d docs", "test": "npm run lint && npm run test-unit", "ci": "npm run lint && npm run test-unit-ci", - "test-unit-ci": "mocha --parallel --jobs 1 --require babel-core/register test/**/*.js test/*.js", + "test-unit-ci": "mocha --parallel --jobs 1 --bail --require babel-core/register test/**/*.js test/*.js", "test-unit": "nyc --reporter lcov mocha --parallel --jobs 1 --require babel-core/register test/**/*.js test/*.js", "test-coverage": "nyc npm run test", "coveralls": "npm run test-coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js", From d3e969b0abaa0acd16bf0f1ba34e39518e14cacc Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Fri, 23 Jan 2026 18:28:11 -0500 Subject: [PATCH 21/27] LI-116181 Limit mocha with 1 parallel jobs --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 8b1dbf0..9db9f22 100644 --- a/package.json +++ b/package.json @@ -59,11 +59,11 @@ "eslint-plugin-import": "^2.17.2", "gh-pages": "^6.1.1", "mocha": "^10.4.0", - "nock": "^10.0.4", + "nock": "^14.0.10", "nyc": "^15.0.0", "publish-please": "^5.4.3", - "sinon": "^1.17.4", - "sinon-chai": "^2.8.0" + "sinon": "^17.0.1", + "sinon-chai": "^3.7.0" }, "engines": { "node": ">=0.12", From eef8b15b39cc9a0ff6b7a6b88a1dc88f4146c08d Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Fri, 23 Jan 2026 18:30:56 -0500 Subject: [PATCH 22/27] LI-116181 Limit mocha with 1 parallel jobs --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 9db9f22..7e6efd2 100644 --- a/package.json +++ b/package.json @@ -62,8 +62,8 @@ "nock": "^14.0.10", "nyc": "^15.0.0", "publish-please": "^5.4.3", - "sinon": "^17.0.1", - "sinon-chai": "^3.7.0" + "sinon": "^1.17.4", + "sinon-chai": "^2.8.0" }, "engines": { "node": ">=0.12", From 783742d5e8e011e3df1b46fa13bdeb3ea6b41755 Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Fri, 23 Jan 2026 18:36:23 -0500 Subject: [PATCH 23/27] LI-116181 Limit mocha with 1 parallel jobs --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7e4324a..5b4050b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: test: runs-on: ubuntu-latest env: - NODE_OPTIONS: --max-old-space-size=8192 + NODE_OPTIONS: --max-old-space-size=8192 --no-experimental-fetch strategy: fail-fast: false matrix: @@ -33,7 +33,7 @@ jobs: npm run build --if-present npm run ci env: - NODE_OPTIONS: --max-old-space-size=8192 + NODE_OPTIONS: --max-old-space-size=8192 --no-experimental-fetch code-coverage: runs-on: ubuntu-latest From aa337cd81caf7e3733e6eac034272e2f3b76853f Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Fri, 23 Jan 2026 18:38:30 -0500 Subject: [PATCH 24/27] LI-116181 Limit mocha with 1 parallel jobs --- .github/workflows/ci.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5b4050b..827fe3d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: npm run build --if-present npm run ci env: - NODE_OPTIONS: --max-old-space-size=8192 --no-experimental-fetch + NODE_OPTIONS: --max-old-space-size=8192 code-coverage: runs-on: ubuntu-latest diff --git a/package.json b/package.json index 7e6efd2..8ab2926 100644 --- a/package.json +++ b/package.json @@ -59,7 +59,7 @@ "eslint-plugin-import": "^2.17.2", "gh-pages": "^6.1.1", "mocha": "^10.4.0", - "nock": "^14.0.10", + "nock": "^11.0.4", "nyc": "^15.0.0", "publish-please": "^5.4.3", "sinon": "^1.17.4", From 86ccbb404cdea5cacb680e486e3c9411f680bb9a Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Fri, 23 Jan 2026 18:41:42 -0500 Subject: [PATCH 25/27] LI-116181 Limit mocha with 1 parallel jobs --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 827fe3d..bfaab3b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,16 +13,16 @@ jobs: test: runs-on: ubuntu-latest env: - NODE_OPTIONS: --max-old-space-size=8192 --no-experimental-fetch + NODE_OPTIONS: --max-old-space-size=8192 strategy: fail-fast: false matrix: node-version: [14.x ,18.x, 20.x] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} cache: 'npm' From 29a2efaaaffb73a2d2d8168bccac788638f6d11a Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Fri, 23 Jan 2026 18:44:04 -0500 Subject: [PATCH 26/27] LI-116181 Limit mocha with 1 parallel jobs --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8ab2926..8b1dbf0 100644 --- a/package.json +++ b/package.json @@ -59,7 +59,7 @@ "eslint-plugin-import": "^2.17.2", "gh-pages": "^6.1.1", "mocha": "^10.4.0", - "nock": "^11.0.4", + "nock": "^10.0.4", "nyc": "^15.0.0", "publish-please": "^5.4.3", "sinon": "^1.17.4", From 4e37a001e046fe478ccfe6cff9c40e7a2699f736 Mon Sep 17 00:00:00 2001 From: Gustavo Meyer Date: Fri, 23 Jan 2026 18:49:38 -0500 Subject: [PATCH 27/27] LI-116181 Limit mocha with 1 parallel jobs --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bfaab3b..eea450b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [14.x ,18.x, 20.x] + node-version: [14.x ,16.x] steps: - uses: actions/checkout@v4