Skip to content
This repository was archived by the owner on Nov 30, 2025. It is now read-only.

init

init #1

Workflow file for this run

name: CI
on:
push:
branches: [ main, master ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Unit tests
run: npm run test
- name: Build
run: npm run build
- name: Build docs
run: |
pip install mkdocs mkdocs-material
mkdocs build