We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c8730f commit 4165d31Copy full SHA for 4165d31
.github/workflows/preview.yaml
@@ -61,6 +61,16 @@ 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: Install node_modules
68
+ run: yarn install
69
+ - name: Check docs
70
+ run: yarn ts-node ./product/coder.com/site/scripts/checkDocs.ts
71
+ env:
72
+ BASE_URL: ${{ steps.preview.outputs.url }}
73
+
74
- name: Update Deployment
75
# If we don't specify always, it won't run this check if failed.
76
# This means the deployment would be stuck pending.
0 commit comments