Skip to content

Fix WAL-mode Cursor state.vscdb auth (unable to open database file) #19

Fix WAL-mode Cursor state.vscdb auth (unable to open database file)

Fix WAL-mode Cursor state.vscdb auth (unable to open database file) #19

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
verify:
name: Typecheck, test, and build
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: npm
- name: Install dependencies
run: npm ci
- name: Typecheck
run: npm run check
- name: Test
run: npm test
- name: Build
run: npm run compile