Skip to content

Commit

Permalink
Merge branch 'master' into feat-identity
Browse files Browse the repository at this point in the history
  • Loading branch information
igalklebanov authored Feb 14, 2024
2 parents 153678b + fbe3d58 commit 4864413
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
with:
deno-version: ${{ matrix.deno-version }}

- name: Use Bun ${{ matrix.bun-version }}
uses: oven-sh/setup-bun@v1
with:
bun-version: ${{ matrix.bun-version }}
# - name: Use Bun ${{ matrix.bun-version }}
# uses: oven-sh/setup-bun@v1
# with:
# bun-version: ${{ matrix.bun-version }}

- name: Install dependencies
run: npm ci
Expand All @@ -55,8 +55,8 @@ jobs:
- name: Run deno tests
run: npm run test:deno

- name: Run bun tests
run: npm run test:bun
# - name: Run bun tests
# run: npm run test:bun

- name: Run esbuild test
run: npm run test:esbuild
Expand Down
4 changes: 2 additions & 2 deletions src/expression/expression-builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ export interface ExpressionBuilder<DB, TB extends keyof DB> {
* .when('gender', '=', 'female')
* .then(
* eb
* .case('martialStatus')
* .case('maritalStatus')
* .when('single')
* .then('Ms.')
* .else('Mrs.')
Expand All @@ -343,7 +343,7 @@ export interface ExpressionBuilder<DB, TB extends keyof DB> {
* case
* when "gender" = $1 then $2
* when "gender" = $3 then
* case "martialStatus"
* case "maritalStatus"
* when $4 then $5
* else $6
* end
Expand Down

0 comments on commit 4864413

Please sign in to comment.