Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ tasks:
WORKFLOWS_DATA_PATH: "./.github/workflows/*.{yml,yaml}"
deps:
- task: npm:install-deps
vars:
PROJECT_PATH: .
cmds:
- |
wget \
Expand Down Expand Up @@ -148,6 +150,8 @@ tasks:
desc: Format all supported files with Prettier
deps:
- task: npm:install-deps
vars:
PROJECT_PATH: .
cmds:
- |
npx \
Expand Down Expand Up @@ -279,6 +283,8 @@ tasks:
deps:
- task: docs:generate
- task: npm:install-deps
vars:
PROJECT_PATH: .
cmds:
- |
npx \
Expand All @@ -290,6 +296,8 @@ tasks:
desc: Automatically correct linting violations in Markdown files where possible
deps:
- task: npm:install-deps
vars:
PROJECT_PATH: .
cmds:
- |
npx \
Expand All @@ -302,6 +310,8 @@ tasks:
desc: Check for problems in Markdown files
deps:
- task: npm:install-deps
vars:
PROJECT_PATH: .
cmds:
- |
npx \
Expand Down
Loading