Skip to content

refactor: Update module imports in react/index.ts #54

refactor: Update module imports in react/index.ts

refactor: Update module imports in react/index.ts #54

Workflow file for this run

name: Lint and Type
on:
pull_request:
push:
branches: main
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.9.0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies and run tests
run: |
pnpm install --frozen-lockfile
pnpm test:check-types
pnpm test:lint