Skip to content

Commit

Permalink
Fix job names v2
Browse files Browse the repository at this point in the history
  • Loading branch information
David Hadka authored and GitHub committed Apr 8, 2020
1 parent f15bc7a commit 2ba9edf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
run: npm run test

# End to end save and restore
test-save-relative:
test-save:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
Expand All @@ -63,8 +63,8 @@ jobs:
with:
key: test-${{ runner.os }}-${{ github.run_id }}
path: test-cache
test-restore-relative:
needs: test-save-relative
test-restore:
needs: test-save
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
Expand All @@ -82,7 +82,7 @@ jobs:
run: __tests__/verify-cache-files.sh ${{ runner.os }} test-cache

# End to end save and restore with relative paths
test-save:
test-save-relative:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
Expand All @@ -98,8 +98,8 @@ jobs:
with:
key: test-relative-${{ 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]
Expand Down

0 comments on commit 2ba9edf

Please sign in to comment.