Skip to content

perf: Update to React 19.2, Next.js canary #115

perf: Update to React 19.2, Next.js canary

perf: Update to React 19.2, Next.js canary #115

Workflow file for this run

name: Build, Lint & Test
on:
pull_request:
branches: "*"
types:
- opened
- edited
- synchronize
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 10.18.0
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build Scripts
run: pnpm build:scripts
- name: Run build
run: pnpm build
- name: Check formatting
run: pnpm lint
- name: Run tests
run: pnpm test