17 lines
220 B
Makefile
17 lines
220 B
Makefile
.PHONY: check check-rules up down smoke
|
|
|
|
check:
|
|
cd plugin && npm run check
|
|
|
|
check-rules:
|
|
node scripts/validate-rules.mjs
|
|
|
|
up:
|
|
./scripts/dev-up.sh
|
|
|
|
down:
|
|
./scripts/dev-down.sh
|
|
|
|
smoke:
|
|
./scripts/smoke-no-reply-api.sh
|