Skip to content

docs: route per-agent setup to the install guide, and correct the registry record #484

docs: route per-agent setup to the install guide, and correct the registry record

docs: route per-agent setup to the install guide, and correct the registry record #484

Workflow file for this run

name: Run Vitests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [20.x]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Enable corepack
run: corepack enable
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: pnpm install
- run: pnpm run build
- run: pnpm test
env:
POSTMAN_API_KEY: ${{ secrets.POSTMAN_API_KEY }}