mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-24 17:13:41 -04:00
15 lines
228 B
Makefile
15 lines
228 B
Makefile
.PHONY: up down test install
|
|
|
|
up:
|
|
docker compose -f docker-compose.e2e.yml up -d --build
|
|
|
|
down:
|
|
docker compose -f docker-compose.e2e.yml down
|
|
|
|
install:
|
|
npm install
|
|
npx playwright install chromium
|
|
|
|
test:
|
|
npx playwright test
|