mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 19:07:30 +00:00
13 lines
212 B
Bash
13 lines
212 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
if [ "$FAIL_COMMANDS_ON_ERRORS" == "true" ]; then
|
||
|
set -e
|
||
|
fi
|
||
|
|
||
|
pnpm install --frozen-lockfile --recursive
|
||
|
pnpm turbo lint test:unit
|
||
|
|
||
|
if [ "$FAIL_COMMANDS_ON_ERRORS" != "true" ]; then
|
||
|
exit 0
|
||
|
fi
|