Skip to content

Fix unintentional function change in React package, release version 2… #101

Fix unintentional function change in React package, release version 2…

Fix unintentional function change in React package, release version 2… #101

Workflow file for this run

name: ci
on: push
env:
NODE_VERSION: 20.12.2
PNPM_VERSION: 9
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: ${{ env.PNPM_VERSION }}
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: pnpm
- run: pnpm install
- run: pnpm lint
- run: pnpm test
- run: pnpm build
- run: pnpm typecheck