13f2e53360
Test Action / Test PHP (pull_request) Successful in 42s
Test Action / Test Base Modules Requires PHP (pull_request) Successful in 9s
Test Action / Test Build Command (pull_request) Successful in 52s
Test Action / Test Node (pull_request) Failing after 52s
Test Action / Test Custom Server Path (pull_request) Failing after 54s
Test Action / Test nginx (pull_request) Successful in 1m7s
Test Action / Test Database Configuration (pull_request) Successful in 1m35s
Test Action / Test Base Modules Installation (pull_request) Successful in 1m40s
Test Action / Test All Components (pull_request) Successful in 2m8s
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
21 lines
547 B
Bash
21 lines
547 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
install_node="${1:-false}"
|
|
install_php="${2:-false}"
|
|
install_nginx="${3:-false}"
|
|
install_base_modules="${4:-false}"
|
|
|
|
if [ "$install_node" != "true" ] &&
|
|
[ "$install_php" != "true" ] &&
|
|
[ "$install_nginx" != "true" ]; then
|
|
echo "::error::At least one component must be enabled (install-node, install-php, or install-nginx)"
|
|
exit 1
|
|
fi
|
|
|
|
if [ "$install_base_modules" = "true" ] && [ "$install_php" != "true" ]; then
|
|
echo "::error::install-base-modules requires install-php to be 'true'"
|
|
exit 1
|
|
fi
|