How to specify a specific vale version with the executor #9
Closed
Description
I'm having trouble specifying a specific version of vale in my CircleCI config.
https://circleci.com/developer/orbs/orb/circleci/vale mentions that I should specify the executor params, but circleci config valdidate
always complains of errors.
Assuming that my config looks like the one below, where should I specify version v3.0.3?
version: 2.1
orbs:
vale: circleci/vale@1.1.1
workflows:
publish-docs:
jobs:
- vale/lint:
name: lint docs
strategy: all
glob: "[!.]*.{md,adoc}"