From 418b2c7e52235daceb644d35b6103957098ce750 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sun, 1 Mar 2026 02:22:22 +0100 Subject: [PATCH] Fix --- .github/actions/setup/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 68da978f..68dfb155 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -23,10 +23,11 @@ runs: node-version: '22' - name: Install dependencies - # if: steps.cache-node-modules.outputs.cache-hit != 'true' + if: steps.cache-node-modules.outputs.cache-hit != 'true' run: yarn install --frozen-lockfile shell: bash - name: Post-install + if: steps.cache-node-modules.outputs.cache-hit == 'true' run: yarn postinstall shell: bash \ No newline at end of file