mirror of
https://github.com/davestephens/ansible-nas
synced 2024-12-25 19:13:08 +00:00
Update vscode tasks to include mkdocs
This commit is contained in:
parent
442ee0e4ac
commit
75d5619a8d
1 changed files with 13 additions and 1 deletions
14
.vscode/tasks.json
vendored
14
.vscode/tasks.json
vendored
|
@ -22,10 +22,22 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Run Ansible-Lint",
|
"label": "Run ansible-lint",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"command": "ansible-lint nas.yml",
|
"command": "ansible-lint nas.yml",
|
||||||
"group": "test"
|
"group": "test"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Serve docs locally (mkdocs serve)",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "mkdocs serve",
|
||||||
|
"group": "test"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Deploy docs to GitHub (mkdocs gh-deploy)",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "mkdocs gh-deploy",
|
||||||
|
"group": "build"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
Loading…
Reference in a new issue