Skip to content

docs: align website with registry-only route contract #31

docs: align website with registry-only route contract

docs: align website with registry-only route contract #31

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
- name: Setup Node
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020
with:
node-version: 'lts/*'
cache: npm
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Format
run: npm run fmt:check
- name: Lint
run: npm run lint && npm run typecheck
- name: Build
run: npm run build
- name: Test
run: npm test