From 08d0806e03fc95ca16106895b3ecdbcd606b1f90 Mon Sep 17 00:00:00 2001 From: Netanel Rabinowitz Date: Thu, 13 Oct 2022 19:35:14 +0300 Subject: [PATCH] remove GITHUB_OUTPUT from the TEST workflow to avoid differences between windows and unix syntax for reading env vars --- .github/workflows/workflow.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 5e0a818..6dad208 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -25,14 +25,10 @@ jobs: uses: actions/setup-node@v3 with: node-version: 16.x - - name: Determine npm cache directory - id: npm-cache - run: | - echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT - name: Restore npm cache uses: actions/cache@v3 with: - path: ${{ steps.npm-cache.outputs.dir }} + path: $(npm config get cache) key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.os }}-node-