Skip to content

style: organize imports and exports #7

style: organize imports and exports

style: organize imports and exports #7

Workflow file for this run

name: Test
on:
push:
paths:
- src/**
pull_request:
paths:
- src/**
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js v20.5.0
uses: actions/setup-node@v3
with:
node-version: 20.5.0
- name: Install dependencies
run: |
npm install --global pnpm
pnpm install --frozen-lockfile
- name: Build
run: pnpm run build