Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support running vale locally #22130

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
Next Next commit
chore: add a make goal to run the validations
  • Loading branch information
mdelapenya committed Feb 28, 2025
commit 973a4a2eda25feeb2f6997bbf8d135a3f932aac7
6 changes: 6 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -101,6 +101,12 @@ formatted markup, and other things. To run the tests:
$ docker buildx bake validate
```

or, using the Makefile:

```console
$ make validate
```

If this command doesn't result in any errors, you're good to go!

## Content not edited here
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
.PHONY: validate
validate: ## run validations
docker buildx bake validate

.PHONY: vendor
vendor: ## vendor hugo modules
./hack/vendor