mirror of
https://github.com/actions/runner-container-hooks.git
synced 2025-12-14 16:46:43 +00:00
10 lines
200 B
TypeScript
10 lines
200 B
TypeScript
import {
|
|
containerNetworkPrune,
|
|
containerPrune
|
|
} from '../dockerCommands/container'
|
|
|
|
export async function cleanupJob(): Promise<void> {
|
|
await containerPrune()
|
|
await containerNetworkPrune()
|
|
}
|