Skip to content

Refactor code structure for improved readability and maintainability #120

Refactor code structure for improved readability and maintainability

Refactor code structure for improved readability and maintainability #120

Workflow file for this run

name: Documents Search CI
permissions:
contents: read
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24]
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: "24"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Generate content
run: pnpm run generate-content-json
- name: Upload search data artifact
uses: actions/upload-artifact@v4
if: success()
with:
name: search-data
path: public/search-data/
retention-days: 30