From dcb2a66b7e92fa951e8f1822aa306fa16ddd85e5 Mon Sep 17 00:00:00 2001 From: VerteDinde Date: Mon, 31 Oct 2022 20:36:58 -0700 Subject: [PATCH] debug: pre-install cli --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 16cdbe51f..6ee182867 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,6 +55,12 @@ jobs: *) BOLT_VERSION=latest ;; esac npm install -g bolt@$BOLT_VERSION + - name: Fix linking 'create-electron-app' on Windows + shell: bash + if: matrix.os == 'windows-latest' + run: | + cd packages/api/cli + yarn install - name: Install run: bolt - name: Lint