Skip to content

content: simulation update #254

content: simulation update

content: simulation update #254

Workflow file for this run

name: Check docs redirects
on:
pull_request:
paths:
- 'docs/**'
- 'static/_redirects'
jobs:
check-redirects:
name: Check docs redirects
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version: 24
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run redirects check
run: |
git fetch origin ${{ github.base_ref }}
yarn check:redirects -- --base origin/${{ github.base_ref }}