Skip to content

feat: v2.0.2 - Node.js runtime compatibility & architecture refactor #4

feat: v2.0.2 - Node.js runtime compatibility & architecture refactor

feat: v2.0.2 - Node.js runtime compatibility & architecture refactor #4

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
env:
KODE_SKIP_BINARY_DOWNLOAD: "1"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install
run: bun install
- name: Format
run: bun run format:check
- name: Typecheck
run: bun run typecheck
- name: Test
run: bun test
- name: Build
run: bun run build