-
Notifications
You must be signed in to change notification settings - Fork 7
60 lines (51 loc) · 1.52 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:
token: ${{ secrets.SPECS_TOKEN }}
submodules: recursive
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ^1.21
- uses: actions/setup-node@v3
with:
node-version: '20.x'
cache: 'yarn'
- name: Installing dependencies
run: yarn install --frozen-lockfile
- name: Building the docs
env:
TARGET_URL: "http://localhost:3000"
BASE_URL: "/docs/"
run: yarn build
- name: Check for broken links
env:
TARGET_URL: "http://localhost:3000"
BASE_URL: "/docs/"
run: |
go install github.com/raviqqe/muffet/v2@latest
yarn serve &
sleep 5
echo "Checking for broken links..."
muffet --version
muffet http://localhost:3000/docs/ \
--ignore-fragments \
--skip-tls-verification \
--exclude="notion[.]so" \
-e "github[.]com/flashbots/suave-specs" \
-e "github[.]com/flashbots/suave-bridge" \
-e "algolia[.]net" \
-e "arxiv[.]org" \
-e "docs[.]google[.]com/presentation/d/19km1xqXrp6HClAOmyUwtq7lADM7BEUsPbTUE7zCwhCw" \
-e "pathoram[.]jimdofree[.]com/files/" \
-e "flashbots[.]notion[.]site"