Skip to content

Commit

Permalink
run on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
jraymakers committed Jun 30, 2024
1 parent e929a99 commit c92c1b5
Showing 1 changed file with 20 additions and 8 deletions.
28 changes: 20 additions & 8 deletions .github/workflows/NodeJS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ jobs:
# DUCKDB_NODE_BUILD_CACHE: 0 # create a standalone package
# NODE_AUTH_TOKEN: ${{secrets.NODE_AUTH_TOKEN}}

# linux-nodejs:
# name: node.js Linux
# runs-on: ubuntu-20.04
linux-nodejs:
name: node.js Linux
runs-on: ubuntu-latest
# needs: set-up-npm
# continue-on-error: ${{ matrix.node != '18' && matrix.node != '20' && matrix.node != '21' }}
# env:
Expand Down Expand Up @@ -68,10 +68,22 @@ jobs:
# node: 21
# target_arch: arm64

# steps:
# - uses: actions/checkout@v3
# with:
# fetch-depth: 0
steps:
- uses: actions/checkout@v4
with:
sparse-checkout: alt

- name: Bindings (Install, Configure, and Build)
working-directory: alt/bindings
run: npm i

- name: Test (Install)
working-directory: alt/test
run: npm i

- name: Test (Run)
working-directory: alt/test
run: npm run test

# - name: Update apt
# shell: bash
Expand Down Expand Up @@ -139,7 +151,7 @@ jobs:
# TARGET_ARCH: ${{ matrix.target_arch }}
# DUCKDB_NODE_BUILD_CACHE: 0
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
sparse-checkout: alt

Expand Down

0 comments on commit c92c1b5

Please sign in to comment.