-
Notifications
You must be signed in to change notification settings - Fork 182
43 lines (39 loc) · 986 Bytes
/
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
name: Check Links
on:
push:
branches:
- master
paths:
- '**/README.md'
- 'packages/nuejs.org/**'
pull_request:
paths:
- '**/README.md'
- 'packages/nuejs.org/**'
workflow_dispatch:
jobs:
links:
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 docs
run: |
bun install
cd packages/nuekit
bun link
cd -
nue build -pr packages/nuejs.org
- name: Check links
if: success() || failure()
uses: lycheeverse/lychee-action@v2
with:
args: >
-v --no-progress
--exclude-path node_modules
--exclude localhost
--
**/README.md
packages/**/.dist/prod/
token: ${{ secrets.GITHUB_TOKEN }}