Merge pull request #1056 from btat/split-link-checker-action

Split link check into 2 steps. Enable frail mode for Markdown links
This commit is contained in:
Billy Tat
2024-01-09 11:40:05 -08:00
committed by GitHub
+4 -2
View File
@@ -18,8 +18,10 @@ jobs:
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check links
run: yarn run remark --quiet --use remark-validate-links --use remark-lint-no-dead-urls ./docs
- name: Check Markdown links
run: yarn run remark --quiet --use remark-validate-links ./docs
- name: Check External links
run: yarn run remark --quiet --use remark-lint-no-dead-urls ./docs
- name: Test build website
env:
NODE_OPTIONS: "--max_old_space_size=4096"