Skip to content

feature: introduce support for empty filter queries #18

feature: introduce support for empty filter queries

feature: introduce support for empty filter queries #18

Workflow file for this run

name: Pull Request Check
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 18.x, 16.x]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 20.x
- run: npm ci
- run: npm test
- run: npm run build
- run: npm pack
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Testing CommonJS
run: |
cd test-cjs
npm install
npm run build
node dist/index.js
- name: Testing ESM
run: |
cd test-mjs
npm install
npm run build
node dist/index.js