Skip to content

refactor: use ZodString.min(1) instead of deprecated ZodString.nonempty() #110

refactor: use ZodString.min(1) instead of deprecated ZodString.nonempty()

refactor: use ZodString.min(1) instead of deprecated ZodString.nonempty() #110

Workflow file for this run

name: Unit Tests
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["18", "20"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
# Install dependencies in parent directory first
- name: Install and test agentkit
run: |
npm i
npm run test