mirror of
https://github.com/actions/cache.git
synced 2025-04-23 14:30:49 +00:00
fix needs
option for test-only-restore
job
* also format code with prettier
This commit is contained in:
parent
f20d3c830c
commit
2807da784f
2 changed files with 8 additions and 8 deletions
2
.github/workflows/workflow.yml
vendored
2
.github/workflows/workflow.yml
vendored
|
@ -72,7 +72,7 @@ jobs:
|
|||
test-cache
|
||||
~/test-cache
|
||||
test-only-restore:
|
||||
needs: test-restore
|
||||
needs: test-save
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, windows-latest, macOS-latest]
|
||||
|
|
|
@ -10,7 +10,7 @@ import * as utils from "./utils/actionUtils";
|
|||
process.on("uncaughtException", e => utils.logWarning(e.message));
|
||||
|
||||
async function run(): Promise<void> {
|
||||
const save = ! core.getBooleanInput(Inputs.OnlyRestore);
|
||||
const save = !core.getBooleanInput(Inputs.OnlyRestore);
|
||||
if (save) {
|
||||
try {
|
||||
if (!utils.isCacheFeatureAvailable()) {
|
||||
|
|
Loading…
Add table
Reference in a new issue