-
Notifications
You must be signed in to change notification settings - Fork 7
60 lines (51 loc) · 1.46 KB
/
pr-tests.yml
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: PR Tests
on:
push:
branches:
- main
pull_request:
jobs:
build-and-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ^1.21
- uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Installing dependencies
run: npm install
- name: Building the docs
env:
TARGET_URL: 'http://localhost:3000'
BASE_URL: '/docs/'
ALGOLIA_APP_ID: 'example'
ALGOLIA_SEARCH_API_KEY: 'example'
ALGOLIA_INDEX_NAME: 'example'
run: npm run build
- name: Check for broken links
env:
TARGET_URL: 'http://localhost:3000'
BASE_URL: '/docs/'
run: |
go install github.com/raviqqe/muffet/v2@latest
npm run serve &
sleep 5
echo "Checking for broken links..."
muffet --version
muffet http://localhost:3000/docs/ \
--ignore-fragments \
--skip-tls-verification \
--buffer-size=16384 \
-e "algolia[.]net" \
-e "arxiv[.]org" \
-e "https://github.com/flashbots/suave-docs" \
-e "https://github.com/flashbots/suave-bridge" \
-e "https://suave.flashbots.net" \
-e "http://172.17.0.2:5173"