Skip to content

Add DOM observer to maintain sidebar configuration persistence #16

Add DOM observer to maintain sidebar configuration persistence

Add DOM observer to maintain sidebar configuration persistence #16

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
- dev
paths:
- 'src/**'
jobs:
lint:
strategy:
matrix:
node-version: [20]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
run_install: false
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Lint code
run: pnpm run lint
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v5
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
run_install: false
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Build project
run: pnpm run build