From 34dae899ff3f0a713e994c12cd92853ffb4a4037 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hanno=20J=2E=20G=C3=B6decke?= Date: Wed, 16 Oct 2024 09:33:18 +0200 Subject: [PATCH] CI debug --- .github/actions/setup/action.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index e724f91c42..eb9d0e6447 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -10,17 +10,17 @@ inputs: runs: using: composite steps: - - name: Cache dependencies - id: yarn-cache - uses: actions/cache@v4 - with: - path: | - **/node_modules - .yarn/install-state.gz - key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}-${{ hashFiles('**/package.json', '!node_modules/**') }} - restore-keys: | - ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }} - ${{ runner.os }}-yarn- + # - name: Cache dependencies + # id: yarn-cache + # uses: actions/cache@v4 + # with: + # path: | + # **/node_modules + # .yarn/install-state.gz + # key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}-${{ hashFiles('**/package.json', '!node_modules/**') }} + # restore-keys: | + # ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }} + # ${{ runner.os }}-yarn- - name: DEBUG PRINT PWD run: echo $PWD