mirror of
https://github.com/pnpm/action-setup.git
synced 2024-11-10 09:39:11 +08:00
Only warn on failure of post action
This commit is contained in:
parent
b1febf84ed
commit
6eb237a86d
@ -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
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user