From b1cbfb8db03766e1fff9ca145966752191b73860 Mon Sep 17 00:00:00 2001 From: Oscar Dominguez Date: Mon, 5 Jul 2021 20:48:50 +0200 Subject: [PATCH] ci(workflow): remove action/cache for test.yml (#74) --- .github/workflows/test.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 58e9662..d58b77f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,14 +24,6 @@ jobs: node-version: ${{ matrix.node }} cache: npm - # Cache dependencies - - uses: actions/cache@v1 - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- - # Install dependencies - run: npm ci