Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ jobs:
packages: write

steps:
# Debug "No space left on device (os error 28)" issues
- name: Check disk usage
run: df -h
- name: Check sizes of directories in home directory
run: du -sh /home/runner/* | sort -h
- name: Check sizes of directories in tools cache
run: du -sh /opt/hostedtoolcache/* | sort -h

# Login against a Docker registry
# https://github.com/docker/login-action
- name: Log into registry
Expand Down
Loading