Fix job names v2

This commit is contained in:
David Hadka 2020-04-07 23:37:50 -04:00 committed by GitHub
parent f15bc7a0d9
commit 2ba9edf492
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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