Skip to content

chore(deps): bump the minor-and-patch group across 1 directory with 39 updates #9212

chore(deps): bump the minor-and-patch group across 1 directory with 39 updates

chore(deps): bump the minor-and-patch group across 1 directory with 39 updates #9212

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Unit Tests (LangChain)
on:
push:
branches: ["main"]
pull_request:
# Only run when LangChain, LangChain Core, or LangChain Classic code changes.
paths:
- "libs/langchain/**"
- "libs/langchain-core/**"
- "libs/langchain-classic/**"
workflow_dispatch: # Allows triggering the workflow manually in GitHub UI
permissions:
contents: read
# If another push to the same PR or branch happens while this workflow is still running,
# cancel the earlier run in favor of the next run.
#
# There's no point in testing an outdated version of the code. GitHub only allows
# a limited number of job runners to be active at the same time, so it's better to cancel
# pointless jobs early so that more useful jobs can run sooner.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
unit-tests:
name: Unit Tests
strategy:
matrix:
os: [ubuntu-latest]
node-version: [20.x, 22.x]
# See Node.js release schedule at https://nodejs.org/en/about/releases/
# include:
# - os: windows-latest
# node-version: 20.x
# - os: macos-latest
# node-version: 20.x
runs-on: ${{ matrix.os }}
env:
PUPPETEER_SKIP_DOWNLOAD: "true"
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: "true"
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup pnpm
uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version-file: ".nvmrc"
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
# Running `test:unit:ci` from root will build first, however debugging
# in CI is easier if we separate the build step from the test step.
- name: Build LangChain
run: pnpm build --filter langchain
- name: Test
run: pnpm run test:unit:ci --filter langchain
env:
COHERE_API_KEY: ${{ secrets.COHERE_API_KEY }}