Skip to content

chore(interaction-api): Add Vertex AI Search and Enterprise Web Search to Interaction API For Vertex AI. #6426

chore(interaction-api): Add Vertex AI Search and Enterprise Web Search to Interaction API For Vertex AI.

chore(interaction-api): Add Vertex AI Search and Enterprise Web Search to Interaction API For Vertex AI. #6426

Workflow file for this run

name: Format code
on:
push:
branches: [ 'main' ]
pull_request:
branches: [ 'main' ]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22.x
cache: 'npm'
- run: USE_LOCAL_BUILD=true npm ci
- name: Run format
run: npx prettier '**/*.ts' '**/*.mjs' '**/*.mjs' '**/*.json' --check
- name: Run linter
run: npm run lint