Skip to content

feat: add stoolap://sql-reference resource for discoverability #2

feat: add stoolap://sql-reference resource for discoverability

feat: add stoolap://sql-reference resource for discoverability #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
tags-ignore: ['**']
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build & Test - node@${{ matrix.node }} (${{ matrix.os }})
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
node: [18, 22]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Verify built output exists
run: test -f build/index.js
- name: Verify binary is executable
run: test -x build/index.js