Adds support for rendering line charts with boolean time series data. #27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "DB:DuckDB" | |
on: [pull_request, workflow_call] | |
jobs: | |
test-duckdb: | |
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 | |
npm run build-duckdb-db | |
npx jest --reporters jest-silent-reporter --reporters summary --config jest.duckdb.config.ts --runInBand | |
env: | |
CI: true | |
MALLOY_DATABASES: duckdb |