Skip to content

Migrate to @tambo-ai/react 1.0.0-rc.4 #5

Migrate to @tambo-ai/react 1.0.0-rc.4

Migrate to @tambo-ai/react 1.0.0-rc.4 #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run Lint
run: npm run lint
- name: Build
run: npm run build
env:
NEXT_PUBLIC_TAMBO_API_KEY: "dummy-key-for-build"
NEXT_PUBLIC_TAMBO_URL: "https://api.tambo.co"