mirror of
https://github.com/status-im/c-kzg-4844.git
synced 2025-01-26 18:09:25 +00:00
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
20
.github/workflows/nodejs-bindings-test.yml
vendored
Normal file
20
.github/workflows/nodejs-bindings-test.yml
vendored
Normal file
@ -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…
x
Reference in New Issue
Block a user