From b876743657b5cbfa8b50b0f43bcfabf95ff91beb Mon Sep 17 00:00:00 2001 From: MayGo Date: Wed, 13 Nov 2024 14:55:56 +0200 Subject: [PATCH] --ignore-optional --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2d33dca5..e404ded6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -65,13 +65,13 @@ jobs: - name: Install Dependencies (Electron) run: | cd electron - yarn install --ignore-optional + yarn install cd .. - name: Install Dependencies (Client) run: | cd client - yarn install --ignore-optional + yarn install cd .. - name: Build Client