Skip to content

feat: add demo app, SQL migrations, and Edge Function improvements #156

feat: add demo app, SQL migrations, and Edge Function improvements

feat: add demo app, SQL migrations, and Edge Function improvements #156

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: "24"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build library
run: npm run build:lib