Skip to content

Refactoring: Agent #761

Refactoring: Agent

Refactoring: Agent #761

Workflow file for this run

name: CDK tests
on:
pull_request:
branches:
- main
- v1
workflow_dispatch: {}
jobs:
cdk-synth:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "18.x"
- run: |
cd cdk
cd custom-resources/setup-pgvector
npm ci
cd ../..
npm ci
npx cdk synth
cdk-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "18.x"
- run: |
cd cdk
cd custom-resources/setup-pgvector
npm ci
cd ../..
npm ci
npm run test