Compare commits

..

1 Commits

Author SHA1 Message Date
79aacde734 chore: update name
Some checks failed
Test Action / Test Node (pull_request) Successful in 21s
Test Action / Test Without Dependencies (pull_request) Successful in 11s
Test Action / Test Custom Server Path (pull_request) Successful in 26s
Test Action / Test Build Command (pull_request) Successful in 26s
Test Action / Test nginx (pull_request) Failing after 35s
Test Action / Test All Components (pull_request) Failing after 1m7s
Test Action / Test PHP (pull_request) Successful in 1m11s
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
2026-02-14 16:54:15 -05:00

View File

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