Skip to content

refactor: remove unused exports #57

refactor: remove unused exports

refactor: remove unused exports #57

Workflow file for this run

name: CI
on:
push:
pull_request:
release:
types:
- created
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- '16'
- '18'
- '20'
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: pnpm install
- run: pnpm lint
- run: pnpm test
- run: pnpm build