Skip to content

fix(deps): update tanstack-query monorepo to v5.62.14 #4538

fix(deps): update tanstack-query monorepo to v5.62.14

fix(deps): update tanstack-query monorepo to v5.62.14 #4538

Workflow file for this run

name: Build project and run linter
on:
push:
paths:
- '**/*.ts'
- '**/*.tsx'
- '**/*.js'
- '**/*.json'
pull_request:
paths:
- '**/*.ts'
- '**/*.tsx'
- '**/*.js'
- '**/*.json'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v2
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: '21.x'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run lint
run: pnpm run lint
- name: Run build
run: pnpm run build