Skip to content

deps(deps-dev): bump @tanstack/react-devtools from 0.10.1 to 0.10.2 #68

deps(deps-dev): bump @tanstack/react-devtools from 0.10.1 to 0.10.2

deps(deps-dev): bump @tanstack/react-devtools from 0.10.1 to 0.10.2 #68

Workflow file for this run

name: CI
on:
push:
pull_request:
permissions:
contents: read
jobs:
ci:
name: CI
runs-on: ubuntu-latest
env:
CGO_ENABLED: 0
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v5
- name: Use Node.js 24.x
uses: actions/setup-node@v6
with:
node-version: 24.x
cache: 'pnpm'
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Install Playwright Chromium
run: pnpm --filter ./frontend exec playwright install --with-deps chromium
- name: Run linter
run: pnpm lint
- name: Run type check
run: pnpm check:types
- name: Run tests
run: pnpm test
- name: Build
run: pnpm build