Skip to content

Commit

Permalink
Merge pull request #4238 from balena-io/fix-win-2
Browse files Browse the repository at this point in the history
patch: fix missing windows dependency
  • Loading branch information
aethernet authored May 30, 2024
2 parents 52144f4 + 8dad81a commit a5dac57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ runs:
npm ci
# as the shrinkwrap might have been done on mac/linux, this is ensure the package is there for windows
if [[runner.os == 'Windows']]; then
npm install winusb-driver-generator
if [[ "$RUNNER_OS" == "Windows" ]]; then
npm i -D winusb-driver-generator
fi
npm run lint
Expand Down

0 comments on commit a5dac57

Please sign in to comment.