Skip to content

Begin rewrite to typescript and only React 19 compatibility #4

Begin rewrite to typescript and only React 19 compatibility

Begin rewrite to typescript and only React 19 compatibility #4

Workflow file for this run

name: Build, Test, Release
on:
push:
branches: main
pull_request:
branches: "*"
jobs:
build_lint_test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Test
run: pnpm test
- name: Validate
run: |
pnpm run check-format
- name: Build
run: pnpm run build