Skip to content

⬆️ Bump @tanstack/react-query from 4.29.7 to 5.24.8 #208

⬆️ Bump @tanstack/react-query from 4.29.7 to 5.24.8

⬆️ Bump @tanstack/react-query from 4.29.7 to 5.24.8 #208

Workflow file for this run

name: Check PR
on: [pull_request]
jobs:
run-ci:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
name: Run Type Check & Linters
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Check types
run: pnpm type
- name: Check linting
run: pnpm lint
- name: Check style
run: pnpm style