Skip to content

chore(deps): bump @hey-api/client-fetch from 0.4.2 to 0.4.3 in the prod-npm group #796

chore(deps): bump @hey-api/client-fetch from 0.4.2 to 0.4.3 in the prod-npm group

chore(deps): bump @hey-api/client-fetch from 0.4.2 to 0.4.3 in the prod-npm group #796

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}=${{ github.head_ref }}
cancel-in-progress: true
jobs:
ci:
name: CI (Lint, Check, Build)
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
node-version: [20.x, 22.x]
python-version: ['3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v4
- name: Setup Environment
uses: ./.github/actions/setup-environment
with:
node-version: ${{ matrix.node-version }}
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm lint
- name: Format (API)
run: pnpm api format
- name: Check
run: pnpm check
- name: Build
run: pnpm build