Skip to content
This repository has been archived by the owner on Aug 2, 2024. It is now read-only.

deploy docs for the latest release to 'latest' #10

deploy docs for the latest release to 'latest'

deploy docs for the latest release to 'latest' #10

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Check formatting
run: npm run format:check
- name: Check typing
run: npm run build:check
- name: Check docs
run: npm run docs