From 9370b4879b433168993bd1f93fe491006e9c62a4 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Fri, 19 Jul 2024 15:16:35 -0700 Subject: [PATCH] Deps for plugin-runtime --- .github/workflows/release.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fae6d263..ae770422 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -65,7 +65,13 @@ jobs: sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf - name: Install Node dependencies - run: npm ci + run: | + npm ci + + - name: Install plugin-runtime Node dependencies + working-directory: plugin-runtime + run: | + npm ci - name: Build plugins working-directory: ${{ env.YAAK_PLUGINS_DIR }}