Skip to content

chore(deps): bump better-sqlite3 from 12.6.2 to 12.8.0 #156

chore(deps): bump better-sqlite3 from 12.6.2 to 12.8.0

chore(deps): bump better-sqlite3 from 12.6.2 to 12.8.0 #156

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v6
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Lint
run: npm run lint
- name: Unit tests
run: npm test
- name: Integration tests
run: npm run test:integration