File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -41,14 +41,28 @@ jobs:
4141 run : ${{github.workspace}}/.github/scripts/CheckUnbrokenExclusions.ps1
4242
4343 - name : Check for Broken Links (Docs)
44+ id : broken-links-docs
45+ timeout-minutes : 15
46+ continue-on-error : true
4447 run : npx unbroken --parse-ids
4548 working-directory : ./docs
4649
50+ - name : Warn if Broken Links (Docs) timed out
51+ if : steps.broken-links-docs.outcome == 'failure' || steps.broken-links-docs.outcome == 'cancelled'
52+ run : echo "::warning::Check for Broken Links (Docs) timed out or failed. Please manually run the job in your machine."
53+
4754 - name : Check for Broken Links (Website)
55+ id : broken-links-website
4856 if : success() || failure()
57+ timeout-minutes : 15
58+ continue-on-error : true
4959 run : npx unbroken --parse-ids
5060 working-directory : ./website
5161
62+ - name : Warn if Broken Links (Website) timed out
63+ if : steps.broken-links-website.outcome == 'failure' || steps.broken-links-website.outcome == 'cancelled'
64+ run : echo "::warning::Check for Broken Links (Website) timed out or failed. Please manually run the job in your machine."
65+
5266 - name : Yarn Install (Website)
5367 if : success() || failure()
5468 run : yarn install --frozen-lockfile
You can’t perform that action at this time.
0 commit comments