Files
zitadel/.devcontainer/base/commands/turbo-lint-unit.update-content.sh
Elio Bischof c066e7cd0d simplify
2025-08-02 05:35:33 +02:00

13 lines
212 B
Bash
Executable File

#!/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