steps: - name: test-syntax image: alpine:latest commands: - echo "=== GameAdm CI Pipeline ===" - echo "Testing repository structure..." - ls -la - echo "Checking install script syntax..." - sh -n install.sh && echo "✅ install.sh syntax OK" || echo "❌ install.sh syntax error" - echo "=== Pipeline completed successfully ===" - name: documentation-check image: alpine:latest commands: - echo "Checking documentation..." - test -f README.md && echo "✅ README.md exists" || echo "❌ README.md missing" - test -s README.md && echo "✅ README.md has content" || echo "❌ README.md empty" - echo "Documentation check completed"