ci: remove tmp files (#32996)

pull/32901/head
Guilherme Gazzo 2 years ago
parent 05de4ba54f
commit 97c7042bb8
  1. 8
      .github/workflows/ci-test-e2e.yml

@ -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

Loading…
Cancel
Save