forked from Jigsaw-Code/outline-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Taskfile.yml
57 lines (43 loc) · 1.47 KB
/
Taskfile.yml
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
version: '3'
set: [pipefail]
run: when_changed
vars:
REPO_ROOT: "{{.ROOT_DIR}}"
BUILD_ROOT: "{{.ROOT_DIR}}/build"
DOCKER: '{{.DOCKER | default "docker"}}'
includes:
metrics_server:
taskfile: ./src/metrics_server/Taskfile.yml
vars: {OUTPUT_BASE: '{{joinPath .BUILD_ROOT "metrics_server"}}'}
sentry_webhook:
taskfile: ./src/sentry_webhook/Taskfile.yml
vars: {OUTPUT_BASE: '{{joinPath .BUILD_ROOT "sentry_webhook"}}'}
shadowbox:
taskfile: ./src/shadowbox/Taskfile.yml
vars: {OUTPUT_BASE: '{{joinPath .BUILD_ROOT "shadowbox"}}'}
third_party:
taskfile: ./third_party/Taskfile.yml
vars: {OUTPUT_BASE: '{{joinPath .BUILD_ROOT "third_party"}}'}
tasks:
clean:
desc: Clean output files
cmds:
- rm -rf .task task src/*/node_modules/ build/ node_modules/ third_party/shellcheck/download/ third_party/*/bin third_party/jsign/*.jar
format:
desc: Format staged files
cmds: ['npx pretty-quick --staged --pattern "**/*.{cjs,html,js,json,md,ts}"']
format:all:
desc: Format all files in the repository
cmds: ['npx prettier --write "**/*.{cjs,html,js,json,md,ts}"']
lint:
desc: Lint all files
deps: [lint:sh, lint:ts]
lint:sh:
desc: Lint all shell files
cmds: [bash ./scripts/shellcheck.sh]
lint:ts:
desc: Lint all .ts and .js files
cmds: ['npx eslint "**/*.{js,ts}"']
test:
desc: Run all the repository tests
deps: [lint, metrics_server:test, sentry_webhook:test, shadowbox:test]