Skip to content
Snippets Groups Projects
Commit 97c7042b authored by Guilherme Gazzo's avatar Guilherme Gazzo
Browse files

ci: remove tmp files (#32996)

parent 05de4ba5
No related branches found
No related tags found
No related merge requests found
......@@ -178,6 +178,12 @@ jobs:
run: |
docker compose -f docker-compose-ci.yml up -d
- name: Clean up temporary files
# remove all folders inside /tmp except /tmp/coverage
run: |
cd /tmp
sudo find . -mindepth 1 -maxdepth 1 -type d | grep -v './coverage' | sudo xargs rm -rf
- name: Cache Playwright binaries
if: inputs.type == 'ui'
uses: actions/cache@v3
......@@ -212,6 +218,8 @@ jobs:
sleep 10
done;
- name: Remove unused Docker images
run: docker system prune -af
- name: E2E Test API
if: inputs.type == 'api'
working-directory: ./apps/meteor
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment