Skip to content

Run tests

Run tests #169

Workflow file for this run

name: Run tests
on:
workflow_dispatch:
schedule:
- cron: '00 10 * * *'
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v6.0.2
- name: Install Bun
uses: oven-sh/setup-bun@v2.2.0
with:
bun-version: latest
- name: Install Dependencies
run: bun install --frozen-lockfile
- name: Build
run: bun run build
- name: Run tests
run: bun run test