Skip to content

feat: add azure openai and vertexai (#15) #57

feat: add azure openai and vertexai (#15)

feat: add azure openai and vertexai (#15) #57

Workflow file for this run

name: Lint, Build
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
main:
timeout-minutes: 15
name: Lint & Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Enable Corepack
run: corepack enable
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Code Lint
run: npm run lint
- name: Code Format
run: npm run format
- name: Build
run: npm run build