Skip to content

feat: Added @langchain/aws example application (#355) #38

feat: Added @langchain/aws example application (#355)

feat: Added @langchain/aws example application (#355) #38

Workflow file for this run

name: Node Agent Examples CI
on:
push:
pull_request:
types:
- edited
- opened
- reopened
- synchronize
workflow_dispatch:
permissions:
contents: read
env:
OUTPUT_MODE: quiet
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [lts/*]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
- name: Run Linting
run: npm run lint