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