mirror of
				https://github.com/pnpm/action-setup.git
				synced 2025-10-31 09:22:11 +08:00 
			
		
		
		
	Only warn on failure of post action
This commit is contained in:
		| @@ -1,5 +1,5 @@ | ||||
| import { spawnSync } from 'child_process' | ||||
| import { setFailed } from '@actions/core' | ||||
| import { warning } from '@actions/core' | ||||
| import { Inputs } from '../inputs' | ||||
| import { patchPnpmEnv } from '../utils' | ||||
|  | ||||
| @@ -17,12 +17,12 @@ export function pruneStore(inputs: Inputs) { | ||||
|   }) | ||||
|  | ||||
|   if (error) { | ||||
|     setFailed(error) | ||||
|     warning(error) | ||||
|     return | ||||
|   } | ||||
|  | ||||
|   if (status) { | ||||
|     setFailed(`command pnpm store prune exits with code ${status}`) | ||||
|     warning(`command pnpm store prune exits with code ${status}`) | ||||
|     return | ||||
|   } | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user