Skip to content

ci: setup release and test pipeline (#1) #8

ci: setup release and test pipeline (#1)

ci: setup release and test pipeline (#1) #8

Workflow file for this run

name: Build and Test
on:
pull_request:
branches:
- "main"
push:
branches:
- "main"
jobs:
build:
name: Build and test code
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install packages
run: bun install
- name: Test
run: bun test --randomize