Skip to content

feat(docs): add the os menu #2786

feat(docs): add the os menu

feat(docs): add the os menu #2786

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
- uses: pnpm/action-setup@v2
with:
version: 8.6.10
- name: Dependencies
run: |
pnpm install
- name: Build
run: |
pnpm run build
- name: Lint
run: |
pnpm run lint
- name: Formatting
run: |
pnpm run fmt:check