mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-06-10 14:55:34 -04:00
18 lines
303 B
Makefile
18 lines
303 B
Makefile
.PHONY: up down test install setup
|
|
|
|
setup:
|
|
bash ./scripts/setup-test-data.sh
|
|
|
|
up: setup
|
|
docker compose -f docker-compose.e2e.yml up -d --build --remove-orphans
|
|
|
|
down:
|
|
docker compose -f docker-compose.e2e.yml down -v
|
|
|
|
install:
|
|
npm install
|
|
npx playwright install chromium
|
|
|
|
test:
|
|
npx playwright test
|