Skip to content

chore(deps): bump @pinecone-database/pinecone from 7.2.0 to 8.0.0 #11

chore(deps): bump @pinecone-database/pinecone from 7.2.0 to 8.0.0

chore(deps): bump @pinecone-database/pinecone from 7.2.0 to 8.0.0 #11

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:
typecheck:
name: TypeScript Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.21
- run: bun install --frozen-lockfile
- run: bun run typecheck
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.21
- run: bun install --frozen-lockfile
- run: bun run lint
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.21
- run: bun install --frozen-lockfile
- run: bun run db:generate
env:
DATABASE_URL: postgresql://localhost:5432/supercode
continue-on-error: true
- run: bun test