Skip to content

Commit

Permalink
Fixing working directory
Browse files Browse the repository at this point in the history
  • Loading branch information
BenedekFarkas committed Apr 4, 2024
1 parent 2d8a66a commit ff35704
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,16 @@ jobs:
node-version: '7'

- name: Setup NPM packages
working-directory: ./src
run: |
cd src
npm install --loglevel warn
# 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"
- name: Rebuild client-side assets
working-directory: ./src
run: |
gulp rebuild
Expand Down

0 comments on commit ff35704

Please sign in to comment.