From 15c5ddf423c041b8594c5dfc2468500a979f3e07 Mon Sep 17 00:00:00 2001 From: Hans Pagel Date: Thu, 1 Oct 2020 11:08:28 +0200 Subject: [PATCH] fix cache key --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 815d49ac9..1328c710f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -31,7 +31,7 @@ jobs: path: | **/node_modules /home/runner/.cache/Cypress - key: ${{ runner.os }}-node-${{ matrix.node-version }}-modules-${{ hashFiles('**/yarn.lock') }} + key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} - name: Install dependencies id: install-dependencies @@ -76,7 +76,7 @@ jobs: path: | **/node_modules /home/runner/.cache/Cypress - key: ${{ runner.os }}-node-${{ matrix.node-version }}-modules-${{ hashFiles('**/yarn.lock') }} + key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} - name: Run tests with Cypress id: cypress @@ -137,7 +137,7 @@ jobs: path: | **/node_modules /home/runner/.cache/Cypress - key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} + key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }} - name: Install dependencies id: install-dependencies