Skip to content

Bump close to v0.10.3 and apply patch #78

Bump close to v0.10.3 and apply patch

Bump close to v0.10.3 and apply patch #78

Workflow file for this run

on: [push, pull_request,repository_dispatch]
defaults:
run:
shell: bash
jobs:
nodejs:
if: never()

Check failure on line 9 in .github/workflows/NodeJS.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/NodeJS.yml

Invalid workflow file

The workflow is not valid. .github/workflows/NodeJS.yml (Line: 9, Col: 9): Unrecognized function: 'never'. Located at position 1 within expression: never()
name: NodeJS
runs-on: macos-latest
env:
GEN: ninja
steps:
- name: Install Ninja
run: brew install ninja
- uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: 'true'
- uses: actions/setup-python@v2
with:
python-version: '3.9'
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install required node packages
run: |
sudo npm install -g duckdb apache-arrow mocha
sudo npm install duckdb apache-arrow mocha
npm -v
node -v
- name: Build duckdb
run: |
make
- name: Run JS tests
run: |
make test_release_js