awesome-cooklang-recipes/Taskfile.yaml
nιcнolaѕ wιlde d3dbba3323
Add markdown link check.
Add linkcheck.sh that checks the links of all markdown files.
Add linkcheck task to Taskfile.yaml
Add link-check GitHub Action to add link checks on a daily schedule.
Add mlc config file to set access codes to pass.

Signed-off-by: nιcнolaѕ wιlde <ncwilde43@gmail.com>
2022-06-01 03:36:34 +00:00

39 lines
671 B
YAML

---
# https://taskfile.dev
version: '3'
vars:
GREETING: Hello, World!
tasks:
awesome-lint:
desc: Lint using awesome-lint
cmds:
- "npx awesome-lint"
deps:
desc: Install dependencies
cmds:
- pip install -r ./scripts/requirements.txt
lint:
desc: Lint the repo
cmds:
- task: awesome-lint
- task: yamllint
linkcheck:
desc: Check for dead links
cmds:
- ./scripts/linkcheck.sh
render:
desc: Render README.md
cmds:
- "python scripts/render_readme.py > README.md"
yamllint:
desc: Lint using yamllint
cmds:
- yamllint .
default:
cmds:
- task -l
silent: true