Merge pull request #7 from dgcoffman/dgc/run-nodejs-bindings-tests-in-ci
Run NodeJS bindings unit tests in CI
This commit is contained in:
commit
895700f4ca
|
@ -0,0 +1,20 @@
|
|||
name: NodeJS bindings tests
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
test-nodejs-bindings:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: recursive
|
||||
- name: Setup
|
||||
run: cd src && make blst
|
||||
- name: Test
|
||||
run: cd bindings/node.js && make build test
|
|
@ -1,5 +1,5 @@
|
|||
INCLUDE_DIRS = ../inc
|
||||
CFLAGS += -O2
|
||||
CFLAGS += -O2 -fPIC
|
||||
|
||||
all: c_kzg_4844.o lib
|
||||
|
||||
|
|
Loading…
Reference in New Issue