added clarification to nuejs.org/docs/styling.md #48
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
- name: Build docs | |
uses: ./.github/workflows/repo/build-page | |
with: | |
root: packages/nuejs.org | |
# keep server running in background | |
- name: Run server | |
run: nue -pr packages/nuejs.org -P 8080 & | |
# find generated HTML files, convert paths to urls | |
# (might be superfluous in the future with some fixes on lychee) | |
- 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 }} |