Some checks failed
Forge CI / smoke-and-build (pull_request) Failing after 1s
The bezalel-vps-runner (act v0.2.11) fails in 1-6s because Node.js is not in PATH of the default runner container, preventing any GitHub Actions (actions/checkout, setup-uv, setup-node, etc.) from executing. Add `container: catthehacker/ubuntu:act-22.04` to all workflow jobs. This image is purpose-built for act runners and includes Node.js, git, Python, npm, and other common CI tooling needed to run GitHub Actions. Fixes #174 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
41 lines
913 B
YAML
41 lines
913 B
YAML
name: Docs Site Checks
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'website/**'
|
|
- '.github/workflows/docs-site-checks.yml'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
docs-site-checks:
|
|
runs-on: ubuntu-latest
|
|
container: catthehacker/ubuntu:act-22.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
cache: npm
|
|
cache-dependency-path: website/package-lock.json
|
|
|
|
- name: Install website dependencies
|
|
run: npm ci
|
|
working-directory: website
|
|
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.11'
|
|
|
|
- name: Install ascii-guard
|
|
run: python -m pip install ascii-guard
|
|
|
|
- name: Lint docs diagrams
|
|
run: npm run lint:diagrams
|
|
working-directory: website
|
|
|
|
- name: Build Docusaurus
|
|
run: npm run build
|
|
working-directory: website
|