Skip to content

deps(deps): bump @ai-sdk/provider-utils from 2.2.8 to 3.0.10 #80

deps(deps): bump @ai-sdk/provider-utils from 2.2.8 to 3.0.10

deps(deps): bump @ai-sdk/provider-utils from 2.2.8 to 3.0.10 #80

Workflow file for this run

name: Quality Checks
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
eslint:
name: ESLint Check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Common Setup Node and pnpm
uses: ./.github/actions/common-setup
with:
pnpm-version: 10.2.0
node-version: "22"
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile --prefer-offline
- name: Run ESLint Check
run: pnpm run lint
types:
name: TypeScript Check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Common Setup Node and pnpm
uses: ./.github/actions/common-setup
with:
pnpm-version: 10.2.0
node-version: "22"
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile --prefer-offline
- name: Run TypeScript Check
run: pnpm run type-check
test:
name: Run Tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 21, 22]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Common Setup Node and pnpm
uses: ./.github/actions/common-setup
with:
pnpm-version: 10.2.0
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile --prefer-offline
- name: Run Tests
run: pnpm test