Skip to content

Feature: move documents count to analytics node (if exists) #156

Feature: move documents count to analytics node (if exists)

Feature: move documents count to analytics node (if exists) #156

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Setup pnpm
run: corepack enable
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run format check
run: pnpm format:check
- name: Run linter
run: pnpm lint
- name: Run type checking
run: pnpm check
- name: Run tests
run: pnpm test
- name: Build application
run: pnpm build:app
- name: Build CLI
run: pnpm build:cli