Skip to content

change lunr config

change lunr config #20

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches: [main]
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22' # Specify the Node.js version you want
- name: Install Dependencies
run: npm ci # Using npm ci for a clean install based on package-lock.json
- name: Check Formatting
run: npx prettier --check "**/*.{js,css,md,html}"