Skip to content

fix: add types to exports to avoid typescript error in import #30

fix: add types to exports to avoid typescript error in import

fix: add types to exports to avoid typescript error in import #30

Workflow file for this run

name: Check for lint/build errors
on:
pull_request:
branches:
- "**"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- name: npm install, lint
run: |
npm install
npm run lint
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- name: npm install, build
run: |
npm install
npm run build
npm run build:lib