From 572a1fafd56191750fc3207bcb1b90b82d8cc2c4 Mon Sep 17 00:00:00 2001 From: Erez Rokah Date: Mon, 22 Mar 2021 11:51:59 +0100 Subject: [PATCH] chore: remove GitHub cache action (#5155) --- .github/workflows/nodejs.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 19b48add..8801dc52 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -28,15 +28,6 @@ jobs: uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - - name: Get yarn cache directory path - id: yarn-cache-dir-path - run: echo "::set-output name=dir::$(yarn cache dir)" - - uses: actions/cache@v2 - with: - path: ${{ steps.yarn-cache-dir-path.outputs.dir }} - key: ${{ runner.os }}-yarn-${{ hashFiles(format('{0}{1}', github.workspace, '/yarn.lock')) }} - restore-keys: | - ${{ runner.os }}-yarn- - name: log versions run: node --version && npm --version && yarn --version - name: install dependecies