EcoSpecies-Atlas/scripts/check-ui-stack-smoke.sh

11 lines
184 B
Bash

#!/bin/sh
set -eu
ROOT_DIR="$(CDPATH= cd -- "$(dirname -- "$0")/.." && pwd)"
cd "$ROOT_DIR"
if [ ! -d node_modules ]; then
npm install --no-bin-links
fi
exec npm run test:ui:stack