set shell := ["bash", "-euo", "pipefail", "-c"]

default: test

build:
    yarn build > /dev/null 2>&1 || true

test: build
    ./test.sh

clean:
    yarn clean

secret-scan-trufflehog:
    @command -v trufflehog >/dev/null && trufflehog filesystem . --only-verified || true
