Skip to content

Commit

Permalink
ci: remove tmp files (#32996)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggazzo authored Aug 7, 2024
1 parent 3db7f57 commit a5196d0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci-test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,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
Expand Down Expand Up @@ -221,6 +227,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
Expand Down

0 comments on commit a5196d0

Please sign in to comment.