From a61bcc62ed2bd942864d8e23bd4d95b3a064ae62 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Mon, 3 Jun 2019 18:06:22 +0200 Subject: [PATCH] Run misspell on CI --- azure-pipelines.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 61f39252..9079744f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -40,3 +40,9 @@ steps: inputs: artifactName: 'generated_site' targetPath: 'blog/public' + +- script: curl -L https://git.io/misspell | bash + displayName: "Install misspell" + +- script: bin/misspell -error blog/content + displayName: "Check for common typos"