Skip to content

chore(deps): bump @tanstack/react-query from 5.80.7 to 5.81.2 (#61) #135

chore(deps): bump @tanstack/react-query from 5.80.7 to 5.81.2 (#61)

chore(deps): bump @tanstack/react-query from 5.80.7 to 5.81.2 (#61) #135

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
code_quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v4
with:
node-version: 22.x
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm lint
- run: pnpm typecheck
build:
needs: code_quality
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'pnpm'
- uses: actions/cache@v4
with:
path: .next/cache
key: ${{ runner.os }}-next-${{ hashFiles('**/pnpm-lock.yaml') }}
- run: pnpm install --frozen-lockfile
- run: pnpm build