Skip to content

Commit

Permalink
test: add podman playwright (#234)
Browse files Browse the repository at this point in the history
  • Loading branch information
NasgulNexus authored Sep 12, 2024
1 parent c94e0a5 commit 16174a1
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion scripts/playwright-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,34 @@ IMAGE_TAG="v1.40.0-jammy" # This version have to be synchronized with playwright

NODE_MODULES_CACHE_DIR="$HOME/.cache/dynamic-forms-playwright-docker-node-modules"

command_exists() {
command -v "$1" >/dev/null 2>&1
}

run_command() {
docker run --rm --network host -it -w /work \
$CONTAINER_TOOL run --rm --network host -it -w /work \
-v $(pwd):/work \
-v "$NODE_MODULES_CACHE_DIR:/work/node_modules" \
"$IMAGE_NAME:$IMAGE_TAG" \
/bin/bash -c "$1"
}

if command_exists docker; then
CONTAINER_TOOL="docker"
elif command_exists podman; then
CONTAINER_TOOL="podman"
else
echo "Neither Docker nor Podman is installed on the system."
exit 1
fi

if [[ "$1" = "clear-cache" ]]; then
rm -rf "$NODE_MODULES_CACHE_DIR"
exit 0
fi

if [[ ! -d "$NODE_MODULES_CACHE_DIR" ]]; then
mkdir -p "$NODE_MODULES_CACHE_DIR"
run_command 'npm ci'
fi

Expand Down

0 comments on commit 16174a1

Please sign in to comment.