Skip to content

README: move hosting/ops detail to Docs/Instructions/HOSTING.md #8

README: move hosting/ops detail to Docs/Instructions/HOSTING.md

README: move hosting/ops detail to Docs/Instructions/HOSTING.md #8

Workflow file for this run

# CI gate only — deployment is handled by Cloudflare Pages' GitHub
# integration (build: npm run build, output: dist) on push to main.
name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm test
- name: Build
run: npm run build