Skip to content

feat: override bookmarks according to sidebar config #1087

feat: override bookmarks according to sidebar config

feat: override bookmarks according to sidebar config #1087

Workflow file for this run

name: CI
on:
- push
- pull_request
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: Build and Lint with Node.js ${{ matrix.node }} on ${{ matrix.os }}
strategy:
matrix:
node:
- 20
- 22
- 24
os:
- ubuntu-latest
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repo
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: Install Dependencies
run: yarn --immutable
- name: Build and Lint
run: |
yarn build
yarn run-p docs lint typecov
env:
PARSER_NO_WATCH: true
RAW_TERMS_URL: ${{ vars.RAW_TERMS_URL }}