Skip to content

Minor changes and debugging #9

Minor changes and debugging

Minor changes and debugging #9

Workflow file for this run

name: Test and Build
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
with:
submodules: true
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 23.x
- name: Install
run: npm install
env:
CI: true
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm test
- name: Specs
run: npm run specs
- name: Build
run: npm run build
- name: Benchmark
run: npm run benchmark -- --example