Skip to content

initial commit

initial commit #1

Workflow file for this run

name: Build and Test
on: [push, pull_request]
permissions:
contents: write
jobs:
build:
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: Build 🚧
run: bun rebuild:linux
- name: Test 🪲
run: bun test
- name: Upload Artifact 🚀
uses: actions/upload-artifact@v4
with:
name: jmap-yacl
path: dist/*