Skip to content

feat(backend): generate typed SQL queries with bun-sqlgen #514

feat(backend): generate typed SQL queries with bun-sqlgen

feat(backend): generate typed SQL queries with bun-sqlgen #514

Workflow file for this run

name: CI (dev)
on:
pull_request:
concurrency:
group: ci-dev-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
env:
NO_COLOR: "1"
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/prepare
- run: bun run test
nango-integrations:
runs-on: ubuntu-latest
defaults:
run:
working-directory: nango-integrations
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/prepare
- run: bun run compile --no-interactive --no-dependency-update
- name: Verify generated Nango artifacts are committed
run: git diff --exit-code -- .nango/nango.json
terraform:
runs-on: ubuntu-latest
defaults:
run:
working-directory: infra/terraform
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/prepare
- run: terraform init -backend=false -input=false
- run: terraform fmt -check -recursive
- run: terraform validate