Skip to content

docs(system-design): add observability and SRE guide #164

docs(system-design): add observability and SRE guide

docs(system-design): add observability and SRE guide #164

Workflow file for this run

name: CI
on:
pull_request:
push:
branches-ignore: [main]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 24
- name: Install dev tools
run: npm install --no-audit --no-fund
- name: Run full test suite (build + validate + links + format)
run: npm test
- name: External link check
uses: lycheeverse/lychee-action@v2
with:
args: --root-dir "$(pwd)/dist" --no-progress "dist/**/*.html"
fail: true