Skip to content

feat(generic-includer): add linkIndexAutotitle option for directory titles from index.md #5872

feat(generic-includer): add linkIndexAutotitle option for directory titles from index.md

feat(generic-includer): add linkIndexAutotitle option for directory titles from index.md #5872

Workflow file for this run

# ⚠️ IMPORTANT: This workflow is a template from diplodoc/lint/scaffolding
# Do not edit this file in other packages - it is automatically copied from here.
# To modify this workflow, edit it in diplodoc/devops/lint/scaffolding/.github/workflows/
# and then run the scaffolding update process.
name: Quality
on:
push:
branches:
- master
- main
pull_request:
branches:
- master
- main
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [22]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ vars.NODE_VERSION }}
cache: 'npm'
- name: Install latest npm (>= 11.5.1)
run: |
[ "$(printf '%s\n' "11.5.1" "$(npm -v)" | sort -V | head -n1)" = "11.5.1" ] || npm install -g npm@11.5.1
shell: bash
- name: Install dependencies
run: npm ci
- name: Run type check
run: npm run typecheck
- name: Run linter
run: npm run lint
- name: Run tests
run: npm test
- name: Run build
run: npm run build