Skip to content

Rodrigom/update to openaicompatible aisdk module #51

Rodrigom/update to openaicompatible aisdk module

Rodrigom/update to openaicompatible aisdk module #51

Workflow file for this run

name: Quality checks
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
prettier:
name: 'Prettier'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Common Node and pnpm setup
uses: ./.github/actions/common-setup
- name: Install dependencies
run: pnpm install --frozen-lockfile --prefer-offline
- name: Run Prettier check
run: pnpm run prettier-check
eslint:
name: 'ESLint'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Common Node and pnpm setup
uses: ./.github/actions/common-setup
- name: Install dependencies
run: pnpm install --frozen-lockfile --prefer-offline
- name: Run ESLint check
run: pnpm run lint