Skip to content

Commit f3a7b14

Browse files
committed
Add convenience tasks to taskfile
These standardized "umbrella" tasks group together all related tasks for the convenience of the contributor.
1 parent 6b515b8 commit f3a7b14

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

Taskfile.yml

+18
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22
version: "3"
33

44
tasks:
5+
check:
6+
desc: Check for problems with the project
7+
deps:
8+
- task: ci:validate
9+
- task: general:check-formatting
10+
- task: general:check-spelling
11+
- task: markdown:check-links
12+
- task: markdown:lint
13+
- task: yaml:lint
14+
15+
fix:
16+
desc: Make automated corrections to the project's files
17+
deps:
18+
- task: general:correct-spelling
19+
- task: general:format-prettier
20+
- task: markdown:fix
21+
- task: markdown:toc
22+
523
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-workflows-task/Taskfile.yml
624
ci:validate:
725
desc: Validate GitHub Actions workflows against their JSON schema

0 commit comments

Comments
 (0)