-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
30 lines (20 loc) · 808 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
CURRENT_DIRECTORY := ${CURDIR}
clean:
docker compose down
rebuild:
docker-compose up --build --force-recreate
# Playwright
run-playwright-all:
docker compose up run-playwright-all --build --force-recreate
run-playwright-chrome:
docker compose up run-playwright-chrome --build --force-recreate
run-playwright-edge:
docker compose up run-playwright-edge --build --force-recreate
run-playwright-firefox:
docker compose up run-playwright-firefox --build --force-recreate
run-playwright-safari:
docker compose up run-playwright-safari --build --force-recreate
run-playwright-chrome-mobile:
docker compose up run-playwright-chrome-mobile --build --force-recreate
run-playwright-safari-mobile:
docker compose up run-playwright-safari-mobile --build --force-recreate