#!/usr/bin/env bash

set -e -o pipefail

if ! command -v action-validator &>/dev/null; then
	echo "action-validator not installed or available in the PATH" >&2
	exit 1
fi

action-validator "$@"
