Skip to content

test: extend link checks #16

test: extend link checks

test: extend link checks #16

Workflow file for this run

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
run: echo 'LINKS=$(find packages/nuejs.org/.dist/prod -name "*.html" -printf "http://localhost:8080/%P ")' >> $GITHUB_ENV
- name: Check site links
uses: lycheeverse/lychee-action@v2
with:
args: >
--no-progress
--exclude reddit.com
--
${{ env.LINKS }}
packages/nuejs.org/.dist/prod/
token: ${{ secrets.GITHUB_TOKEN }}