Skip to content

Finalize NULL related decisions #1141

Finalize NULL related decisions

Finalize NULL related decisions #1141

Workflow file for this run

name: "DB:MotherDuck"
on:
pull_request:
workflow_call:
secrets:
MOTHERDUCK_TOKEN_10:
required: true
jobs:
test-motherduck:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm ci --loglevel error
npm run build
npx jest --reporters jest-silent-reporter --reporters summary --config jest.duckdb-other.config.ts
env:
CI: true
MALLOY_DATABASES: motherduck
MOTHERDUCK_TOKEN: ${{ secrets.MOTHERDUCK_TOKEN_10 }}