From 98e5d7f8bce578777dc31a21ee5c5b74837ab71a Mon Sep 17 00:00:00 2001 From: Alexander Smirnov Date: Tue, 12 Mar 2024 12:03:46 +0100 Subject: [PATCH] Add du with top 50 --- .github/actions/test_ya/action.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/actions/test_ya/action.yml b/.github/actions/test_ya/action.yml index 29b73205c2a3..7e21b61064cf 100644 --- a/.github/actions/test_ya/action.yml +++ b/.github/actions/test_ya/action.yml @@ -343,4 +343,7 @@ runs: - name: show free space if: always() shell: bash - run: df -h + run: | + df -h + cd ~ + du -a | sort -rn | head -n 50