Skip to content

Update release workflow #28

Update release workflow

Update release workflow #28

Workflow file for this run

name: Build + Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Platform 🛠
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.1.17
- name: Install dependencies 📦
run: |
bun install --frozen-lockfile
- name: Lint and Build ⚒️
run: |
bun run lint
bun run build