Skip to content

fix and build

fix and build #29

Workflow file for this run

name: Bun CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Setup Bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun install
- name: Test to see if the project compiles
run: bun src/test.ts
- name: Perform tests
run: bun test