Skip to content

refactor(*): rename 'info' parameter to 'errorInfo' in onError and componentDidCatch #21

refactor(*): rename 'info' parameter to 'errorInfo' in onError and componentDidCatch

refactor(*): rename 'info' parameter to 'errorInfo' in onError and componentDidCatch #21

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
command: ["pnpm lint", "pnpm typescript", "pnpm test"]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9.6.0
- uses: actions/setup-node@v4
with:
cache: "pnpm"
cache-dependency-path: "pnpm-lock.yaml"
node-version-file: ".nvmrc"
- run: pnpm install --frozen-lockfile
- run: pnpm prerelease
- name: Run cis
run: ${{ matrix.command }}