github wf

This commit is contained in:
jokob-sk
2025-06-01 14:27:09 +10:00
parent d6af3363ed
commit b4addd9630

View File

@@ -19,12 +19,13 @@ jobs:
- name: Check for absolute path URLs
run: |
if grep -r -E "\burl:\s*['\"]\/php" --include=\*.{js,php} .; then
if grep -rE "['\"]\/php\/" --include=\*.{js,php} .; then
echo "❌ Found absolute path URLs starting with '/php/'. Please use relative paths."
exit 1
else
echo "✅ No absolute path URLs found."
fi
- name: Check Python syntax
run: |
set -e