-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskfile.yml
More file actions
92 lines (75 loc) · 1.76 KB
/
Taskfile.yml
File metadata and controls
92 lines (75 loc) · 1.76 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
version: '3'
tasks:
install:
desc: Install dependencies
cmds:
- yarn install
test:
desc: Run Jest tests
cmds:
- yarn test
playwright:
desc: Run Playwright tests
deps: [install]
cmds:
- yarn playwright
playwright:smoke-test:
desc: Run Playwright smoke tests
deps: [install]
cmds:
- yarn playwright:smoke-test
playwright:show-report:
desc: Show Playwright test report
cmds:
- yarn playwright:show-report
playwright:update-snapshots:
desc: Update Playwright snapshots
deps: [install]
cmds:
- yarn playwright:update-snapshots
playwright:docker:
desc: Run Playwright tests in Docker
deps: [playwright:docker:install]
cmds:
- yarn playwright:docker
playwright:docker:build:
desc: Build Playwright Docker image
cmds:
- yarn playwright:docker:build
playwright:docker:install:
desc: Install dependencies in Playwright Docker image
cmds:
- yarn playwright:docker:install
playwright:docker:update-snapshots:
desc: Update Playwright snapshots in Docker
deps: [playwright:docker:install]
cmds:
- yarn playwright:docker:update-snapshots
storybook:
desc: Start Storybook development server
cmds:
- yarn storybook
storybook:ci:
desc: Start Storybook in CI mode
cmds:
- yarn storybook-ci
build:
desc: Build the project
cmds:
- yarn build
build:storybook:
desc: Build Storybook
cmds:
- yarn build-storybook
prettier:check:
desc: Check code formatting
cmds:
- yarn prettier:check
prettier:fix:
desc: Fix code formatting
cmds:
- yarn prettier:fix
tsc:full:
desc: Run full TypeScript compilation
cmds:
- yarn tsc:full