-
Notifications
You must be signed in to change notification settings - Fork 182
69 lines (62 loc) · 1.87 KB
/
links.yaml
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
61
62
63
64
65
66
67
68
69
name: Check Links
on:
push:
branches:
- master
paths:
- '**/README.md'
- 'packages/nuejs.org/**'
pull_request:
paths:
- '**/README.md'
- 'packages/nuejs.org/**'
workflow_dispatch:
jobs:
readme:
if: ${{ github.repository_owner == 'nuejs' || github.event_name == 'workflow_dispatch' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check README links
uses: lycheeverse/lychee-action@v2
with:
args: >
--no-progress
--exclude-path node_modules
--exclude localhost
--base .
--
"**/README.md"
token: ${{ secrets.GITHUB_TOKEN }}
site:
if: ${{ github.repository_owner == 'nuejs' || github.event_name == 'workflow_dispatch' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- name: Install and build site
run: |
bun install
cd packages/nuekit
bun link
cd ../nuejs.org
nue build -p
nue -pP 8080 &
- name: Find files to check
id: files
run: |
links=$(find packages/nuejs.org/.dist/prod -name "*.html" -printf "http://localhost:8080/%P ")
echo "links=$links" >> $GITHUB_OUTPUT
- name: Check site links
uses: lycheeverse/lychee-action@v2
with:
args: >
--no-progress
--accept "403, 429, 503, 999"
--remap "http://localhost:8080/@ https://nuejs.org/@"
--remap "http://localhost:8080/todomvc https://nuejs.org/todomvc"
--remap "http://localhost:8080/glow-demo https://nuejs.org/glow-demo"
--exclude "http://localhost:8080/404.html"
--
${{ steps.files.outputs.links }}
token: ${{ secrets.GITHUB_TOKEN }}