Skip to content

Rewrite the component to have a more consistent api across #8

Rewrite the component to have a more consistent api across

Rewrite the component to have a more consistent api across #8

Workflow file for this run

name: Node.js Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '21'
- name: Install Dependencies
run: npm install
- name: Test
run: npm run citest
- name: Build
run: npm run build