From 10d5832a9aee5b11b40cb3530b907a323fe3a8a3 Mon Sep 17 00:00:00 2001 From: Netanel Rabinowitz Date: Sun, 4 Dec 2022 20:06:26 +0200 Subject: [PATCH] Update workflow.yml --- .github/workflows/workflow.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 8142f83..ae1859c 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -25,10 +25,15 @@ jobs: uses: actions/setup-node@v3 with: node-version: 16.x + - name: Determine npm cache directory + id: npm-cache + shell: bash + run: | + echo "dir=$(npm config get cache)">>$GITHUB_OUTPUT - name: Restore npm cache uses: actions/cache@v3 with: - path: $(npm config get cache) + path: ${{ steps.npm-cache.outputs.dir }} key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.os }}-node-