From 7eea5405ddfe7a4f81f872910ca108f0e2068f10 Mon Sep 17 00:00:00 2001 From: Edwin Joassart Date: Thu, 30 May 2024 14:33:35 +0200 Subject: [PATCH] patch: fix missing windows dependency --- .github/actions/test/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/test/action.yml b/.github/actions/test/action.yml index e4af64d0d39..e2e6c008df0 100644 --- a/.github/actions/test/action.yml +++ b/.github/actions/test/action.yml @@ -57,7 +57,7 @@ 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 + if [[ $RUNNER_OS == 'Windows']]; then npm install winusb-driver-generator fi