We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c8730f commit ba92bf8Copy full SHA for ba92bf8
.github/workflows/preview.yaml
@@ -61,6 +61,14 @@ jobs:
61
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
62
CODER_DOCS_MAIN_BRANCH: ${{ github.event.pull_request.head.sha }}
63
64
+ # This ensures the docs site is built properly
65
+ # as it will sometimes throw a 404 or 500
66
+ # error if Markdown/parsing errors are present
67
+ - name: Check docs
68
+ run: yarn ts-node ./product/coder.com/site/scripts/checkDocs.ts
69
+ env:
70
+ BASE_URL: ${{ steps.preview.outputs.url }}
71
+
72
- name: Update Deployment
73
# If we don't specify always, it won't run this check if failed.
74
# This means the deployment would be stuck pending.
0 commit comments