-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (32 loc) · 823 Bytes
/
main.yml
File metadata and controls
41 lines (32 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Lint and validate links
on:
pull_request:
branches:
- main
jobs:
build-and-validate:
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: '22'
cache: 'pnpm'
- run: pnpm install
- name: Lint
run: |
pnpm format:check
- name: Build documentation
run: |
pnpm docs:build
- name: Serve docs and check links
run: |
pnpm docs:serve &
sleep 10 # Wait for the server to start
node ./libs/link-validator.js http://localhost:8082 ./docs/.vitepress/dist/