Skip to content

refactor: update CLI import in index.ts #1

refactor: update CLI import in index.ts

refactor: update CLI import in index.ts #1

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
jobs:
lint-and-build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v2
id: pnpm-install
with:
version: 8
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint & Build
run: pnpm lint && pnpm build