From 8e13fc0e2a706426910976117f3c6a94743786e2 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sat, 1 Apr 2023 03:55:55 -0400 Subject: [PATCH] Use `npm i --force` for react-virtualized --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 89b298058a..c5e6c60464 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,7 +53,9 @@ jobs: - name: Install Node modules if: steps.node-cache.outputs.cache-hit != 'true' - run: npm install + # --force is necessary for current React versions until react-virtualized is updated or + # we replace it: https://github.com/bvaughn/react-virtualized/issues/1775 + run: npm install --force - name: Build Zotero run: npm run build