We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33bb287 commit 7176ab4Copy full SHA for 7176ab4
.github/workflows/continous-integration.yml
@@ -32,6 +32,16 @@ jobs:
32
- name: Checkout git repository 🕝
33
uses: actions/checkout@v2
34
35
+ - name: Free disk space
36
+ # tries to make sure we do not run out of disk space, see
37
+ # https://github.community/t5/GitHub-Actions/BUG-Strange-quot-No-space-left-on-device-quot-IOExceptions-on/td-p/46101
38
+ run: |
39
+ sudo swapoff -a
40
+ sudo rm -f /swapfile
41
+ sudo apt clean
42
+ docker rmi $(docker image ls -aq)
43
+ df -h
44
+
45
- name: Setup Node 🦝
46
uses: actions/setup-node@v1
47
with:
0 commit comments