Skip to content

chore: add minimal Github actions #1

chore: add minimal Github actions

chore: add minimal Github actions #1

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
env:
BUN_VERSION: 1.3.1
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: ${{ env.BUN_VERSION }}
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Run tests
run: bun run test