Skip to content

fix: remove reference to non-existent scope column in auth query #37

fix: remove reference to non-existent scope column in auth query

fix: remove reference to non-existent scope column in auth query #37

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.9"
- run: bun install
- name: Type check
run: bun run typecheck
- name: Run CLI tests (isolated to prevent mock.module pollution)
run: bun test test/unit/cli.test.ts
- name: Run remaining unit tests
run: |
find test/unit -name '*.test.ts' ! -name 'cli.test.ts' | xargs bun test