rking on another test.
Some checks failed
Minimal Test / Minimal Backend Test (push) Successful in 17s
CI/CD Pipeline / Integration Tests (push) Has been cancelled
CI/CD Pipeline / Backend Tests (Python) (push) Has been cancelled
CI/CD Pipeline / Frontend Tests (TypeScript/Vue) (push) Has been cancelled
Basic Test / Basic Test (push) Has been cancelled
Working CI / Backend Tests (Python) (push) Has been cancelled
Minimal Test / Minimal Frontend Test (push) Has been cancelled
Working CI / Frontend Tests (TypeScript/Vue) (push) Has been cancelled

Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
This commit is contained in:
2025-10-21 10:23:06 -04:00
parent d0cd9aefb0
commit 30a665fa31

View File

@@ -17,16 +17,29 @@ jobs:
- name: Simple test
run: |
set +e # Don't exit on errors
echo "=== Basic Test Starting ==="
echo "Current working directory: $(pwd)"
echo "Current user: $(whoami)"
echo "Available Python versions:"
ls -la /usr/bin/python* || echo "No python found in /usr/bin"
which python3 || echo "python3 not in PATH"
python3 --version || echo "python3 version failed"
ls -la /usr/bin/python* 2>/dev/null || echo "No python found in /usr/bin"
which python3 2>/dev/null && python3 --version || echo "python3 not available"
which python 2>/dev/null && python --version || echo "python not available"
echo "Available Node versions:"
which node || echo "node not in PATH"
node --version || echo "node version failed"
which node 2>/dev/null && node --version || echo "node not available"
which npm 2>/dev/null && npm --version || echo "npm not available"
echo "Directory contents:"
ls -la
echo "Backend directory check:"
test -d backend && echo "Backend directory exists" || echo "Backend directory missing"
if [ -d backend ]; then
echo "Backend contents:"
ls -la backend/
fi
echo "Frontend directory check:"
test -d frontend && echo "Frontend directory exists" || echo "Frontend directory missing"
if [ -d frontend ]; then
echo "Frontend contents:"
ls -la frontend/
fi
echo "=== Basic Test Complete ==="