Skip to content

refactor: streamline parameter handling in createDatabase for consist… #39

refactor: streamline parameter handling in createDatabase for consist…

refactor: streamline parameter handling in createDatabase for consist… #39

Workflow file for this run

name: e2e
on:
push:
branches: [main, master]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- run: npm install
- run: npx playwright install --with-deps chromium
- run: npm run build
- run: npm run test:e2e -s
- run: npm run test:node -s
- name: Native smoke (optional)
if: env.SQLITE_VEC_EXT != ''
run: node tests/native-smoke.mjs
env:
SQLITE_VEC_EXT: ${{ env.SQLITE_VEC_EXT }}