Skip to content

feat: add cross-platform Node.js and Windows support #41

feat: add cross-platform Node.js and Windows support

feat: add cross-platform Node.js and Windows support #41

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install
- name: Typecheck
run: bun run typecheck
- name: Test
run: bun test
continue-on-error: true
- name: Build
run: bun run build
- name: Audit
run: bun audit