From e1687dc94ceb1f51d6855a5add5c059d43f4eaab Mon Sep 17 00:00:00 2001 From: Marine Dunstetter Date: Fri, 1 Mar 2024 13:24:05 +0100 Subject: [PATCH] ci (fix): in the deploy workflow, move the deps install before the addon build --- .github/workflows/deploy.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 71d9c725..14c17623 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -27,13 +27,14 @@ jobs: node-version: 16.x cache: pnpm + - name: Install Dependencies + run: pnpm install + - name: Build addon run: pnpm run build:addon - - name: Install and Build 🔧 - run: | - pnpm install - pnpm build:test-app + - name: Build app 🔧 + run: pnpm build:test-app - name: Deploy 🚀 uses: JamesIves/github-pages-deploy-action@v4.5.0