17 lines
278 B
Bash
Executable File
17 lines
278 B
Bash
Executable File
#!/usr/bin/env sh
|
|
set -eu
|
|
|
|
if [ ! -f .env ]; then
|
|
echo "missing .env" >&2
|
|
exit 1
|
|
fi
|
|
|
|
set -a
|
|
. ./.env
|
|
set +a
|
|
|
|
./scripts/configure-broker-user-profile.sh
|
|
./scripts/set-first-broker-login-mode.sh secure
|
|
npm --prefix google-e2e ci
|
|
npm --prefix google-e2e run test:claim-mapping
|