Skip to content

things

things #21

Workflow file for this run

name: Test
on:
push:
pull_request:
jobs:
test-build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun install
- name: Build library
run: bun run build
- name: Run tests
run: bun test