diff options
author | Ian Lewis <ianmlewis@gmail.com> | 2019-10-24 00:21:45 -0400 |
---|---|---|
committer | Ian Lewis <ianmlewis@gmail.com> | 2019-10-24 02:35:07 -0400 |
commit | a7803353f03528042f15ade30462b88cb8b2ddc6 (patch) | |
tree | 55c458e60a77efb17ef2af9cbb79f7f38b33296a /cloudbuild.yaml | |
parent | cf240fdf731ff631a37e1a35e6b4e4f2c4203a2d (diff) |
Added lint-md linter for markdown
Diffstat (limited to 'cloudbuild.yaml')
-rw-r--r-- | cloudbuild.yaml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cloudbuild.yaml b/cloudbuild.yaml index 5cd9e22b2..21965427b 100644 --- a/cloudbuild.yaml +++ b/cloudbuild.yaml @@ -49,7 +49,7 @@ steps: - > ./upstream/gvisor/bazel-bin/runsc/linux_amd64_pure_stripped/runsc help syscalls -o json | ./bin/generate-syscall-docs -out ./content/docs/user_guide/compatibility/ - # Pull npm dependencies for scss + # Pull npm dependencies for scss and lint-md - name: 'gcr.io/cloud-builders/npm' args: ['ci'] # Copy App Engine app files. @@ -59,6 +59,9 @@ steps: - name: 'gcr.io/gvisor-website/hugo:0.53' env: ['HUGO_ENV=production'] args: ["hugo"] + # Test Markdown for issues. + - name: 'gcr.io/cloud-builders/npm' + args: ['run', 'lint-md'] # Test the HTML for issues. - name: 'gcr.io/gvisor-website/html-proofer:3.10.2' args: |