We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b515b8 commit f3a7b14Copy full SHA for f3a7b14
Taskfile.yml
@@ -2,6 +2,24 @@
2
version: "3"
3
4
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
18
+ - task: general:correct-spelling
19
+ - task: general:format-prettier
20
+ - task: markdown:fix
21
+ - task: markdown:toc
22
23
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-workflows-task/Taskfile.yml
24
ci:validate:
25
desc: Validate GitHub Actions workflows against their JSON schema
0 commit comments