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

default: test

build:
    yarn build

test: build
    ./test.sh
    yarn build

clean:
    yarn clean

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