Skip to content

release: v1.2.0 — mesh foundation + stability fixes #150

release: v1.2.0 — mesh foundation + stability fixes

release: v1.2.0 — mesh foundation + stability fixes #150

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
bun-version: ["1.3.14"]
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: ${{ matrix.bun-version }}
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Run full check against committed artifacts
run: bun run check
- name: Rebuild bundles for host platform
run: bun run build:cli && bun run build:plugin
- name: Run full check after rebuild
run: bun run check