From 70ed45da22e939c8d1fab440d9ce00f0e8905202 Mon Sep 17 00:00:00 2001 From: Benedek Farkas Date: Thu, 18 Sep 2025 23:35:56 +0200 Subject: [PATCH] Splitting up steps in the compile-node job of the compile workflow --- .github/workflows/compile.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index 518a68daa..54bf7c0d6 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -74,18 +74,21 @@ jobs: with: node-version: 7 - - name: Setup NPM Packages + - name: Install Gulp Globally working-directory: ./src run: | # Install gulp globally to be able to run the rebuild task, using the same version as in the project. $gulpVersion = (Get-Content Package.json -Raw | ConvertFrom-Json).devDependencies.gulp Start-Process npm -NoNewWindow -Wait -ArgumentList "install gulp@$gulpVersion -g --loglevel warn" - npm install --loglevel warn + - name: Setup NPM Packages + working-directory: ./src + shell: cmd + run: npm install --loglevel warn - name: Rebuild Client-side Assets - shell: cmd working-directory: ./src + shell: cmd run: gulp rebuild - name: Check Client-side Assets