Skip to content

Add more detail and glossary #148

Add more detail and glossary

Add more detail and glossary #148

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
format-check:
name: Format check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "yarn"
- name: Install dependencies
run: yarn install --immutable
- name: Run format check
run: yarn format:check
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "yarn"
- name: Install dependencies
run: yarn install --immutable
- name: Build project
run: yarn build