From 6ff75122ce537305cd21e5b160fdcb14caf1ecc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathias=20M=C3=BCller?= Date: Tue, 19 Nov 2024 16:11:05 +0100 Subject: [PATCH] fix: npm install not depending on server hit or miss --- .github/actions/npm-install/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/npm-install/action.yml b/.github/actions/npm-install/action.yml index 36614357..490b9f57 100644 --- a/.github/actions/npm-install/action.yml +++ b/.github/actions/npm-install/action.yml @@ -44,5 +44,5 @@ runs: - name: install packages shell: bash working-directory: ${{ github.workspace }} - if: steps.cache.outputs.cache-hit != 'true' || steps.cache_emulator.outputs.cache-hit != 'true' || steps.cache_basic_react.outputs.cache-hit != 'true' || steps.cache_basic_vue.outputs.cache-hit != 'true' + if: steps.cache.outputs.cache-hit != 'true' || steps.cache_emulator.outputs.cache-hit != 'true' || steps.cache_server.outputs.cache-hit != 'true' || steps.cache_basic_react.outputs.cache-hit != 'true' || steps.cache_basic_vue.outputs.cache-hit != 'true' run: npm ci --include=dev