-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
49 lines (33 loc) 路 676 Bytes
/
Copy pathMakefile
File metadata and controls
49 lines (33 loc) 路 676 Bytes
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
.PHONY: dev lint test eval-smoke db-migrate db-seed docker-up docker-down repo-test-fast repo-test-task repo-test-context repo-test-pr guards-fast guards-task guards-context guards-pr
dev:
pnpm dev
lint:
pnpm lint
test:
pnpm test
eval-smoke:
pnpm eval:smoke
db-migrate:
pnpm db:migrate
db-seed:
pnpm db:seed
docker-up:
pnpm docker:up
docker-down:
pnpm docker:down
guards-fast:
pnpm repo:test:fast
guards-task:
pnpm repo:test:task
guards-context:
pnpm repo:test:context
guards-pr:
pnpm repo:test:pr
repo-test-fast:
pnpm repo:test:fast
repo-test-task:
pnpm repo:test:task
repo-test-context:
pnpm repo:test:context
repo-test-pr:
pnpm repo:test:pr