Files
oc/.github/workflows/ci.yml
T

23 lines
441 B
YAML

# Run the test suite on every push and pull request. Tests are offline by
# design (fixtures in tests/pages), so CI never flakes on a live site.
name: ci
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: 24
- run: npm ci
- run: npm test