Skip to content

Add precompiled binary support for Linux, macOS, and Windows #150

Add precompiled binary support for Linux, macOS, and Windows

Add precompiled binary support for Linux, macOS, and Windows #150

Workflow file for this run

name: Build and test
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize]
jobs:
build-test:
name: Build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
run: |
corepack enable
corepack prepare pnpm@latest --activate
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: pnpm
- run: pnpm install
- run: pnpm run build
- run: pnpm run ci