Skip to content
Open
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
14 changes: 14 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,17 @@ jobs:
docker compose build --no-cache
docker compose up -d

- name: Start Background Resource Monitor for Docker Containers
run: |
nohup bash -c '
while true; do
echo "=== $(date) ==="
free -h
docker stats --no-stream
sleep 10
done
' > monitor.log 2>&1 &

- name: Run Cypress tests
uses: cypress-io/github-action@v6
with:
Expand All @@ -144,6 +155,9 @@ jobs:
run: |
docker compose down -v

- name: Output Docker Container Resource Monitor Logs
run: cat monitor.log

- uses: actions/upload-artifact@v6
if: ${{ failure() }}
with:
Expand Down
Loading