Compare commits

..

1 Commits

Author SHA1 Message Date
07ec832837 chore: update name
Some checks failed
Test Action / Test Without Dependencies (pull_request) Successful in 10s
Test Action / Test Node (pull_request) Successful in 22s
Test Action / Test Custom Server Path (pull_request) Successful in 19s
Test Action / Test nginx (pull_request) Failing after 36s
Test Action / Test Build Command (pull_request) Successful in 20s
Test Action / Test PHP (pull_request) Failing after 1m17s
Test Action / Test All Components (pull_request) Failing after 1m15s
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
2026-02-14 16:49:14 -05:00

View File

@@ -31,11 +31,7 @@ jobs:
- name: Run server tests
run: |
cd ./test-server
if [ -f package.json ] && grep -q '"test"' package.json; then
npm test
else
echo "⚠ No test script configured, skipping"
fi
test-php:
name: Test PHP
@@ -62,7 +58,7 @@ jobs:
- name: Run server tests
run: |
cd ./test-server
composer test:unit
./vendor/bin/phpunit
test-nginx:
name: Test nginx
@@ -118,11 +114,7 @@ jobs:
- name: Run integration tests
run: |
cd ./test-server
if [ -f package.json ] && grep -q '"test:integration"' package.json; then
npm run test:integration
else
echo "⚠ No integration test script configured, skipping"
fi
test-custom-paths:
name: Test Custom Server Path
@@ -145,11 +137,7 @@ jobs:
- name: Run server tests
run: |
cd ./my-custom-server
if [ -f package.json ] && grep -q '"test"' package.json; then
npm test
else
echo "⚠ No test script configured, skipping"
fi
test-without-dependencies:
name: Test Without Dependencies