Skip to content
This repository has been archived by the owner on Dec 27, 2024. It is now read-only.

refactor: fix types import #309

refactor: fix types import

refactor: fix types import #309

Workflow file for this run

name: CI
on:
push:
env:
PNPM_VERSION: 9.6.0
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: pnpm/action-setup@v2
with:
version: ${{ env.PNPM_VERSION }}
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: Run Format Check
run: pnpm run format
- name: Run Lint Check
run: pnpm run lint