From 98db4df0dc147e5fec9180c50f4e21acf1fd0a58 Mon Sep 17 00:00:00 2001 From: Edwin Joassart Date: Thu, 30 May 2024 14:33:35 +0200 Subject: [PATCH 1/3] 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 e4af64d0d3..e2e6c008df 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 From d28719daf249f2994acdf94b4bb7ea937ffcab9b Mon Sep 17 00:00:00 2001 From: Edwin Joassart Date: Thu, 30 May 2024 14:56:07 +0200 Subject: [PATCH 2/3] 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 e2e6c008df..c67a4b261e 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 From 8dad81ae34b8d71f3d4f7151ee60717e6207ccd8 Mon Sep 17 00:00:00 2001 From: Edwin Joassart Date: Thu, 30 May 2024 16:28:56 +0200 Subject: [PATCH 3/3] 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 c67a4b261e..69d7b5a57a 100644 --- a/.github/actions/test/action.yml +++ b/.github/actions/test/action.yml @@ -58,7 +58,7 @@ runs: # 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 + npm i -D winusb-driver-generator fi npm run lint