aboutsummaryrefslogtreecommitdiff
path: root/run
blob: 9362e9a4ccdf569bbc15f3eb16a70f553a8cab35 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env bash

ARGS=(--allow-net --allow-env --allow-read --allow-write --unstable)

if grep -q "DEBUG=1" .env; then
    deno lint --unstable &&
        deno test "${ARGS[@]}" test/ &&
        echo "Tests succeeded!" &&
        deno run "${ARGS[@]}" src/main.ts
elif grep -q "DEBUG=2" .env; then
    deno lint --unstable &&
        deno test "${ARGS[@]}" test/ &&
        echo "Tests succeeded!"
else
    deno run "${ARGS[@]}" src/main.ts
fi