-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskfile.yml
More file actions
71 lines (62 loc) · 1.24 KB
/
Taskfile.yml
File metadata and controls
71 lines (62 loc) · 1.24 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
version: "3"
includes:
srv:
taskfile: srv/Taskfile.yml
dir: srv
web:
taskfile: web/Taskfile.yml
dir: web
marketing:
taskfile: marketing/Taskfile.yml
dir: marketing
video:
taskfile: video/Taskfile.yml
dir: video
email:
taskfile: email/Taskfile.yml
dir: email
tasks:
setup:
desc: Install all dependencies
cmds:
- task: srv:install
- task: web:install
- task: marketing:install
- task: email:install
- task: video:install
build:
desc: Build all projects
cmds:
- task: srv:build
- task: web:build
- task: marketing:build
- task: video:build
test:
desc: Run all tests
cmds:
- task: srv:test
- task: web:test
format:
desc: Format all projects
cmds:
- task: web:format
lint:
desc: Lint all projects
cmds:
- task: srv:lint
- task: web:lint
- task: video:lint
typecheck:
desc: Run TypeScript type checks
cmds:
- task: web:typecheck
- task: email:typecheck
codegen:
desc: Generate TypeScript types from the OpenAPI spec
cmds:
- task: web:codegen
dev:
desc: Run server and frontend in dev mode
deps:
- srv:dev
- web:dev