Skip to content

perf: replace React/Ink with custom ANSI renderer #161

perf: replace React/Ink with custom ANSI renderer

perf: replace React/Ink with custom ANSI renderer #161

Workflow file for this run

name: Test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
- name: Use Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version-file: .nvmrc
- name: Setup pnpm
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4
with:
run_install: true
- name: Type check
run: pnpm type-check
- name: Build
run: pnpm build
- name: Test
run: pnpm test
- name: Test Node.js v12
run: pnpm --use-node-version=12.22.12 node ./tests/node12-compat.cjs
- name: Lint
run: pnpm lint