From 954536030cf22b7c7c844a595635b1a644580ad8 Mon Sep 17 00:00:00 2001 From: David Wertheimer Date: Wed, 15 May 2024 12:17:45 -0700 Subject: [PATCH] removing node-gyp to try to fix ci --- .github/workflows/node.js.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index d49b821f7..b582dd165 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -39,7 +39,7 @@ jobs: node-version: ${{ matrix.node-version }} cache: 'npm' # shoulde eventually be a clean install using: - run: npm ci --legacy-peer-deps - - run: npm i -g node-gyp@latest && npm config set node_gyp "/usr/local/lib/node_modules/node-gyp/bin/node-gyp.js" + # - run: npm i -g node-gyp@latest && npm config set node_gyp "/usr/local/lib/node_modules/node-gyp/bin/node-gyp.js" - run: npm ci # clean install (deletes node_modules) - run: npm link # necessary for some reason specific to NP dev setup # note: when upgrade to node 16+, add this to the following --max-old-space-size=8192 @@ -87,7 +87,7 @@ jobs: node-version: ${{ matrix.node-version }} cache: 'npm' # shoulde eventually be a clean install using: - run: npm ci --legacy-peer-deps - - run: npm i -g node-gyp@latest && npm config set node_gyp "/usr/local/lib/node_modules/node-gyp/bin/node-gyp.js" + # - run: npm i -g node-gyp@latest && npm config set node_gyp "/usr/local/lib/node_modules/node-gyp/bin/node-gyp.js" - run: npm ci # clean install (deletes node_modules) - run: npm link # necessary for some reason specific to NP dev setup # note: when upgrade to node 16+, add this to the following --max-old-space-size=8192