From 4ebb1d36c46b8f8d5fc6f486cb961979911d895d Mon Sep 17 00:00:00 2001 From: Julien Eluard Date: Thu, 25 Apr 2024 21:31:00 +0200 Subject: [PATCH] chore: debug issue --- .github/actions/setup-and-build/action.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/actions/setup-and-build/action.yml b/.github/actions/setup-and-build/action.yml index f2575ea04565..9dc89fe81a0c 100644 --- a/.github/actions/setup-and-build/action.yml +++ b/.github/actions/setup-and-build/action.yml @@ -20,17 +20,17 @@ runs: shell: bash run: echo "v8CppApiVersion=$(node --print "process.versions.modules")" >> $GITHUB_OUTPUT - - name: Restore build - uses: actions/cache/restore@v4 - id: cache-build-restore - with: - path: | - node_modules - packages/*/node_modules - lib/ - packages/*/lib - packages/*/.git-data.json - key: ${{ runner.os }}-node-${{ inputs.node }}-${{ github.sha }} + # - name: Restore build + # uses: actions/cache/restore@v4 + # id: cache-build-restore + # with: + # path: | + # node_modules + # packages/*/node_modules + # lib/ + # packages/*/lib + # packages/*/.git-data.json + # key: ${{ runner.os }}-node-${{ inputs.node }}-${{ github.sha }} - name: Install & build if: steps.cache-build-restore.outputs.cache-hit != 'true'