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 76da32f commit 4792a16Copy full SHA for 4792a16
.github/workflows/ci-link-validator.yml
@@ -0,0 +1,22 @@
1
+name: CI - Link Validator
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ test-links:
10
+ name: Run Starlight Link Check
11
+ runs-on: ubuntu-latest
12
+ env:
13
+ NODE_OPTIONS: "--max_old_space_size=4096"
14
+ steps:
15
+ - name: Check out code using Git
16
+ uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
17
18
+ - name: Install Tools & Dependencies
19
+ uses: withstudiocms/automations/.github/actions/install@main
20
21
+ - name: Run Link Check
22
+ run: CHECK_LINKS=true && pnpm ci:build
0 commit comments