We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5b3ebe commit 32d6e33Copy full SHA for 32d6e33
.github/workflows/publish-sample.yml
@@ -49,14 +49,12 @@ jobs:
49
id: yarn-lock-hash
50
run: echo "hash=${{ hashFiles('**/yarn.lock') }}" >> $GITHUB_OUTPUT
51
52
-# - name: Cache node_modules
53
-# id: yarn-cache
54
-# uses: actions/cache@v4
55
-# with:
56
-# path: ${{ env.CACHE_NODE_MODULES_PATH }}
57
-# key: ${{ runner.os }}-yarn-${{ steps.yarn-lock-hash.outputs.hash }}
58
-# restore-keys: |
59
-# ${{ runner.os }}-yarn-
+ - name: Cache node_modules
+ id: yarn-cache
+ uses: actions/cache@v4
+ with:
+ path: ${{ env.CACHE_NODE_MODULES_PATH }}
+ key: ${{ runner.os }}-yarn-${{ steps.yarn-lock-hash.outputs.hash }}
60
61
- name: Install dependencies
62
if: steps.yarn-cache.outputs.cache-hit != 'true'
0 commit comments