Skip to content

feat: do serve-options Node.js compatible #1378

feat: do serve-options Node.js compatible

feat: do serve-options Node.js compatible #1378

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
# Useful to test Node.js runtime is working fine on some tests
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '22'
# Bun setup, used for almost everything inside the project
- uses: actions/checkout@v4
- name: Bunjs
uses: oven-sh/setup-bun@v1
with:
bun-version: 1.1.26
- name: Install dependencies
run: bun install
- run: bun run build
- run: bun run test