-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathTaskfile.yaml
147 lines (132 loc) · 2.73 KB
/
Taskfile.yaml
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
version: 3
dotenv:
- .env
tasks:
install:
desc: Install project dependencies
silent: true
run: once
sources:
- package.json
- yarn.lock
- .yarnrc.yml
cmds:
- task: env
- yarn install --immutable
env:
internal: true
silent: true
status:
- test -f .env
cmds:
- cp .env.example .env
format:
desc: Format the codebase
deps: [install]
sources:
- src/**/*.svelte
- src/**/*.html
- src/**/*.ts
- tests/**/*.ts
- ./**/*.md
cmds:
- npx prettier --plugin-search-dir . --write .
- npx eslint --fix .
lint:
desc: Lint the codebase
deps: [install]
sources:
- src/**/*.svelte
- src/**/*.html
- src/**/*.ts
- tests/**/*.ts
- ./**/*.md
cmds:
- npx prettier --plugin-search-dir . --check .
- npx eslint .
- npx svelte-kit sync
- npx svelte-check --tsconfig ./tsconfig.json
dev:
desc: Run the development server
deps: [install]
cmds:
- npx vite dev
env:
NODE_ENV: development
build:
desc: Build the application
deps: [install]
sources:
- src/**/*.svelte
- src/**/*.html
- src/**/*.ts
cmds:
- npx vite build
env:
NODE_ENV: production
serve:
desc: Serve the application
deps: [install]
cmds:
- npx vite preview
env:
NODE_ENV: production
test:unit:
desc: Run unit tests
deps: [install]
sources:
- vitest.unit.ts
- src/**/*.ts
- tests/unit/**/*.ts
cmds:
- npx vitest run --config vitest.unit.ts
env:
NODE_ENV: test
test:unit:watch:
desc: Run unit tests in watch mode
cmds:
- npx vitest watch --config vitest.unit.ts --no-coverage
env:
NODE_ENV: test
test:components:
desc: Run component tests
deps: [install]
sources:
- vitest.components.ts
- src/**/*.ts
- tests/components/**/*.ts
cmds:
- npx vitest run --config vitest.components.ts
env:
NODE_ENV: test
test:components:watch:
desc: Run component tests in watch mode
cmds:
- npx vitest watch --config vitest.components.ts
env:
NODE_ENV: test
test:e2e:
desc: Run end-to-end tests
deps: [playwright, build]
sources:
- src/**/*.svelte
- src/**/*.html
- src/**/*.ts
- tests/e2e/**/*.ts
cmds:
- npx playwright test
env:
NODE_ENV: production
test:
desc: Run the full acceptance test suite
cmds:
- task: lint
- task: test:unit
- task: test:components
- task: test:e2e
playwright:
deps: [install]
silent: true
internal: true
cmds:
- npx playwright install