Skip to content

chore(deps): bump uuid and @langchain/core #99

chore(deps): bump uuid and @langchain/core

chore(deps): bump uuid and @langchain/core #99

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install deps
run: npm ci
env:
NPM_CONFIG_REGISTRY: https://registry.npmjs.org/
- name: Build
run: npm run build
- name: Run checks (linting, type-checking, formatting)
run: npm run check
- name: Ensure repo is clean after checks
run: git diff --exit-code --quiet
- name: Run tests
run: npm run test