Validate the repository's Taskfiles against the JSON schema.
Install the check-taskfiles.yml
GitHub Actions workflow to .github/workflows/
The tool dependencies of this workflow are managed by npm.
Add the dependencies by running this command:
npm install --save-dev ajv-cli@^5.0.0 ajv-formats@^3.0.1
Commit the resulting changes to the package.json
and package-lock.json
files.
The workflow is configured to check all files named Taskfile.yml
in the repository. If there are additional taskfiles, add them to the following fields in check-taskfiles.yml
:
on.push.paths
on.pull_request.paths
jobs.validate.strategy.matrix.file[]
Configure the version of Node.js used for development of the project in the env.NODE_VERSION
field of check-taskfiles.yml
.
Add the following to /.gitignore
:
/node_modules/
Markdown badge:
[](https://github.com/TODO_REPO_OWNER/TODO_REPO_NAME/actions/workflows/check-taskfiles.yml)
Replace the TODO_REPO_OWNER
and TODO_REPO_NAME
placeholders in the URLs with the final repository owner and name (example).
Asciidoc badge:
image:https://github.com/{repository-owner}/{repository-name}/actions/workflows/check-taskfiles.yml/badge.svg["Check Taskfiles status", link="https://github.com/{repository-owner}/{repository-name}/actions/workflows/check-taskfiles.yml"]
Define the {repository-owner}
and {repository-name}
attributes and use them throughout the readme (example).
Add CI workflow to validate Taskfiles
On every push or pull request that affects the repository's Taskfiles, and periodically, validate them
against the JSON schema.
On every push or pull request that affects the repository's [Taskfiles](https://taskfile.dev/#/usage), and periodically, validate them against the JSON schema.