From f15bc7a0d98de7bd545124899e08849ea82403c5 Mon Sep 17 00:00:00 2001 From: David Hadka Date: Tue, 7 Apr 2020 23:33:13 -0400 Subject: [PATCH] Fix job names --- .github/workflows/workflow.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index ba13037..75cdddb 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -47,7 +47,7 @@ jobs: run: npm run test # End to end save and restore - test-save: + test-save-relative: strategy: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] @@ -63,8 +63,8 @@ jobs: with: key: test-${{ runner.os }}-${{ github.run_id }} path: test-cache - test-restore: - needs: test-save + test-restore-relative: + needs: test-save-relative strategy: matrix: os: [ubuntu-latest, windows-latest, macOS-latest]