Skip to content

feat: extend exported types #8

feat: extend exported types

feat: extend exported types #8

Workflow file for this run

name: Publish to npm
on:
push:
branches:
- main
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Build library
run: npm run build --if-present
- name: Run tests
run: npm test