Skip to content

chore(deps): update dependency dompurify to v3.4.14 #13016

chore(deps): update dependency dompurify to v3.4.14

chore(deps): update dependency dompurify to v3.4.14 #13016

name: Test Deploy to GitHub Pages
on:
pull_request:
branches:
- main
paths:
- 'docs/**'
- '.github/workflows/deploy-pages-test.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test-deploy:
name: Test Deploy to GitHub Pages
runs-on: ubuntu-latest
defaults:
run:
working-directory: docs
steps:
- uses: actions/checkout@v7.0.1
with:
fetch-depth: 0
- uses: actions/setup-node@v7.0.0
with:
node-version: 24
cache: yarn
cache-dependency-path: 'docs/yarn.lock'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Test build website
run: yarn build
- name: Restore lychee cache
uses: actions/cache@v6
with:
path: .lycheecache
key: lychee-html-${{ hashFiles('docs/docs/**/*.md', 'docs/docs/**/*.mdx', 'docs/lychee.toml') }}
restore-keys: lychee-html-
- name: Check links in built HTML
uses: lycheeverse/lychee-action@v2
with:
args: >-
--config ./docs/lychee.toml
--base-url https://tunit.dev
--no-progress
'docs/build/**/*.html'
fail: true
workingDirectory: ${{ github.workspace }}