From ff6acfa7bec06403b6b0bbf1d076bd1a44b8b985 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Tue, 13 Jul 2021 04:42:00 +0530 Subject: Fixed issue 'cb() never called' from: https://reactgo.com/npm-err-cb-never-called/ --- .github/workflows/ferdi-builds.yml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to '.github') diff --git a/.github/workflows/ferdi-builds.yml b/.github/workflows/ferdi-builds.yml index 277721c8c..d89fbae6e 100644 --- a/.github/workflows/ferdi-builds.yml +++ b/.github/workflows/ferdi-builds.yml @@ -133,6 +133,8 @@ jobs: run: | npm uninstall node-gyp npm i -g node-gyp@8.0.0 && npm config set node_gyp "$(which node-gyp)" + - name: Fix corrupted node cache + run: npm cache clean --force - name: Install node dependencies recursively run: npx lerna bootstrap - name: Package recipes @@ -227,6 +229,8 @@ jobs: run: | npm uninstall node-gyp npm i -g node-gyp@8.0.0 && npm config set node_gyp "$(which node-gyp)" + - name: Fix corrupted node cache + run: npm cache clean --force - name: Install node dependencies recursively run: npx lerna bootstrap - name: Package recipes @@ -313,6 +317,8 @@ jobs: uses: actions/setup-node@v2 with: node-version: 14.17.3 + - name: Fix corrupted node cache + run: npm cache clean --force - name: Install node dependencies recursively run: npx lerna bootstrap - name: Package recipes -- cgit v1.2.3-54-g00ecf