This commit is contained in:
Elio Bischof
2025-08-02 05:35:33 +02:00
parent 90dc64a2bb
commit c066e7cd0d
27 changed files with 280 additions and 231 deletions

View File

@@ -0,0 +1,12 @@
#!/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