Skip to content

add tests

add tests #16

Workflow file for this run

name: Build
on: [push]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm run test:ci